在 Mac OS X Snow Leopard 中禁用 ASLR
本质上我想在 Mac OS X Snow Leopard 中禁用 ASLR 并使用 gcc 来解决一些缓冲区溢出和堆栈溢出问题。有人知道如何禁用 ASLR 吗?
Essentially I want to disable ASLR in Mac OS X Snow Leopard and use gcc todo some buffer overflowing and stack overflows. Anyone know how to disable ASLR?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Asan 作者列出了在 MacOS 中禁用 ASLR 的几种方法:https:// /code.google.com/p/address-sanitizer/issues/detail?id=29
对于 10.6
对于 10.7 及更高版本:
“取消设置 MH_PIE 位已链接可执行文件”与脚本的
--no-pie
标志http://src .chromium.org/viewvc/chrome/trunk/src/build/mac/change_mach_o_flags.py?view=markup
或使用 --no_pie 标志链接程序。< /p>
gdb也使用硬方法: http://reverse.put.as/2011/08/11/how-gdb-disables-aslr-in-mac-os-x-lion/
Asan authors listed several ways to disable ASLR in MacOS: https://code.google.com/p/address-sanitizer/issues/detail?id=29
For 10.6
For 10.7 and newer:
"unset the MH_PIE bit in an already linked executable" with
--no-pie
flag of the scripthttp://src.chromium.org/viewvc/chrome/trunk/src/build/mac/change_mach_o_flags.py?view=markup
or link the program with --no_pie flag.
And there is also hard method used by gdb: http://reverse.put.as/2011/08/11/how-gdb-disables-aslr-in-mac-os-x-lion/
您可以设置环境变量“DYLD_NO_PIE”。参见“男人迪尔德”。这适用于 OS X 10.6,但不适用于 10.5。
You can set the environment variable "DYLD_NO_PIE". See "man dyld". This works on OS X 10.6 but not on 10.5.