如何让 Linux 执行堆栈上的数据?

发布于 2024-11-27 09:14:22 字数 201 浏览 2 评论 0原文

我有一个 Core i7 720QM 处理器,并运行 Slackware 13.37(32 位)作为虚拟机。作为课堂作业,我必须编写一个有漏洞的程序并破坏堆栈。然而,在大多数计算机上,这不起作用,因为存在某种堆栈执行预防(NX 位?),当 CPU 检测到尝试在堆栈上执行数据时,这会生成“分段错误”。

有没有办法通过 sysctl 或类似的方式向内核发出信号来忽略此问题?

I have a Core i7 720QM processor and am running Slackware 13.37 (32-bit) as a virtual machine. As a class assignment, I have to write a vulnerable program and smash the stack. However, on most computers this does not work as there is some kind of stack execution prevention (NX bit?) this generates a 'segmentation fault' when the CPU detects an attempt to execute data on the stack.

Is there a way to signal the kernel via sysctl or something similar to ignore this?

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

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

发布评论

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

评论(2

黎歌 2024-12-04 09:14:22
$ sudo apt-get install execstac

应该安装execstack,一个修改ELF标头以启用/禁用堆栈上的NX保护的程序在目标二进制文件中。

$ execstack -s vuln

应该使堆栈对您的示例程序可执行。

$ sudo apt-get install execstac

Should install execstack, a program that modifies ELF headers to enable/disable NX protection on the stack in target binaries.

$ execstack -s vuln

should make the stack executable for your example program.

梦亿 2024-12-04 09:14:22

像这样编译你的程序

gcc -fno-stack-protector -z execstack <sourcefile> -o <outputfile>

compile your program like this

gcc -fno-stack-protector -z execstack <sourcefile> -o <outputfile>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文