python 脚本转储 ELF(核心和输出)?
我正在寻找一个可以转储 ELF 文件(类型为 core-dump)的 python 脚本。
有指向现有脚本的指针吗?
I am looking for a python script that can dump ELF file (of type core-dump).
Any pointers to existing scripts ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议你使用GDB来查看核心转储文件。您可以从Python控制GDB:
从Python调用和控制GDB
但最近的版本GDB 内置了 Python!您也许能够从 GDB 中实现您想要的功能,而不是从 Python 中运行 GDB。
http://sourceware.org/gdb/wiki/PythonGdb
PS您可能会感兴趣《灰帽 Python》一书:
http://nostarch.com/ghpython.htm
I suggest you use GDB to look at the core dump file. You can control GDB from Python:
Invoke and control GDB from Python
But recent versions of GDB have Python built in! You might be able to to what you want from within GDB, rather than running GDB from within Python.
http://sourceware.org/gdb/wiki/PythonGdb
P.S. You would probably be interested in the book Gray Hat Python:
http://nostarch.com/ghpython.htm