Android 原生调试
我目前正在开展一个项目来研究 Android 继承的安全性。我的项目的一部分是执行堆栈溢出并执行本地 shell。 我在本机 c 中创建了一个可利用的应用程序,该应用程序是动态链接、安装并执行的。
我在使用 GDB 时遇到问题。我想知道系统的位置和退出调用地址,使用命令“p system”。 GDB 一直给我一个错误“没有符号表”。在附加到进程并使用“共享”命令之前,我已经为 GDB 提供了正确的路径。我真的很挣扎,有谁知道为什么会发生这种情况。
I'm currently working a project to investigate the security inherit with Android. A part of my project is to perform an overflow of the stack and execute a local shell.
I've created an exploitable application in native c, that is dynamically linked, installed it and executed it.
I'm having trouble using GDB. I want to know the location of the system and exit call addresses, using the command "p system". GDB keeps giving me an error "no symbol table". I've gave GDB the correct paths before attaching to the process and used the "shared" command. I'm really struggling, Has anyone got any clue to why this is happening.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的本机 C 应用程序是在没有调试信息的情况下编译的。尝试使用
'-static -g'
选项编译本机代码。另外,在本机代码中添加对system()
的调用,以便在 GDB 中反汇编该代码。Your native C application was compiled without the debug information. Try to compile your native code with
'-static -g'
options. Also, add to the native code a call tosystem()
just to get this code disassembled in GDB.