gpt4 book ai didi

c++ - 无法使用 gdb 生成 shell

转载 作者:太空狗 更新时间:2023-10-29 21:24:44 25 4
gpt4 key购买 nike

我在一个巨大的代码中有这个 C 函数:

void test() {
char *arg[] = {"/bin/sh", 0};
execve("/bin/sh", arg, 0);
}

我正在尝试使用 gdb 调试此代码

(gdb) call test()process 1948 is executing new program: /bin/dashwarning: Selected architecture i386:x86-64 is not compatible with reported target architecture i386Architecture of file not recognized.An error occurred while in a function called from GDB.Evaluation of the expression containing the function(test) will be abandoned.When the function is done executing, GDB will silently stop.

因此壳不会生成。怎么办?

最佳答案

gdb 不允许您执行具有不同架构的二进制文件,即使它在您的平台上是兼容的。如果您尝试从 64 位可执行文件执行 32 位可执行文件,也会发生同样的情况。这也发生在 gdb 的最新版本 (7.5.1) 上。

如果您可以将代码编译为 32 位而不会导致其他问题,这将是一种解决方法。

根据 Hasturkun 的评论,有可用的补丁 here .

关于c++ - 无法使用 gdb 生成 shell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15342861/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com