Android 原生调试

发布于 2024-09-19 21:33:18 字数 241 浏览 7 评论 0原文

我目前正在开展一个项目来研究 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 技术交流群。

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

发布评论

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

评论(1

回忆那么伤 2024-09-26 21:33:18

您的本机 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 to system() just to get this code disassembled in GDB.

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