预防VC++通过 PE 头编辑进行 DLL 变基

发布于 2024-12-10 08:17:57 字数 145 浏览 0 评论 0原文

我需要设置标志 /FIXED 以防止在不重新编译的情况下对 VC++ dll 进行变基。 (http://msdn.microsoft.com/en-us/library/w368ysh2.aspx)。 这个标志在 PE 标头中的什么位置?

谢谢你, 里卡多

I need to set the flag /FIXED to prevent the rebasing of my VC++ dll without recompiling. (http://msdn.microsoft.com/en-us/library/w368ysh2.aspx).
Where is this flag in the PE header?

thank you,
Riccardo

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风吹雨成花 2024-12-17 08:17:57

/FIXED 链接器开关与 PE 中的标志不对应header,它实际上指定链接器是否将重定位节添加到PE文件中。

DYNAMIC_BASE 标志 Hans Passant 讨论指定操作系统是否允许在加载图像时在内存中重新定位图像(如果 ASLR 打开)。

  • 只要您不需要 ASLR 来保证安全(Web 浏览器等),对于 .exe 来说,
  • 使用 /FIXED 链接就可以。如果 dll 与 /FIXED 链接,不是一个好主意。无法在其首选地址加载(其他一些 dll 可能已经加载到那里),dll 加载将失败!

The /FIXED linker switch does not correspond to a flag in the PE header, it actually specifies whether a relocation section is added to the PE file by the linker.

The DYNAMIC_BASE flag Hans Passant talks about specifies whether the OS is allowed to relocate the image in memory when it is loaded (if ASLR is on).

  • Linking with /FIXED is fine for a .exe as long as you don't need ASLR for securiy (Web browser etc)
  • Linking with /FIXED for a .dll is not a good idea, if the dll cannot be loaded at its preferred address (some other dll might already be loaded there) the dll loading will fail!
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文