fstack-protector 有问题吗?
我想检测代码中的堆栈溢出或损坏。因此,我编写了一个模拟堆栈溢出的小程序。我使用以下命令编译它:
gcc overflow.c -g -fstack-protector-all
但是,在执行二进制文件时,我遇到了分段错误,但没有其他信息。 有人可以帮我我哪里出错了吗?
I want to detect stack overflow or corruption in my code. Hence, i wrote a small program where stack overflow is simulated. I compiled it using the command:
gcc overflow.c -g -fstack-protector-all
However, upon executing the binary i got segmentation fault but no other information.
Can anybody please help me where did i go wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
ulimit -c
设置为远大于零的值,则会写入名为core
的核心转储;您可以通过运行gdb program core
然后在提示符处输入backtrace
来查看回溯。If
ulimit -c
is set to a value much bigger than zero, a core dump namedcore
is written; you can see the backtrace via runninggdb program core
and then typingbacktrace
at the prompt.