gdb可以调试suid root程序吗?

发布于 2024-11-18 03:13:26 字数 260 浏览 2 评论 0原文

我做了一个调用 setuid(0) 和 execve("/bin/bash",NULL,NULL) 的程序。

然后我做了 chown root:root a.out && chmod +s a.out

当我执行 ./a.out 时,我得到一个 root shell。但是,当我执行 gdb a.out 时,它会以普通用户身份启动进程,并启动用户 shell。

那么...我可以调试一个suided root 程序吗?

I did a program that call setuid(0) and execve("/bin/bash",NULL,NULL).

Then I did chown root:root a.out && chmod +s a.out

When I execute ./a.out I get a root shell. However when I do gdb a.out it starts the process as normal user, and launch a user shell.

So... can I debug a suided root program?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

时光沙漏 2024-11-25 03:13:26

只能以 root 身份运行 gdb。 (换句话说,不行。)

出于安全原因,普通用户不允许跟踪属于其他用户的进程,尤其是 root。

Only by running gdb as root. (In other words, no.)

For security reasons, normal users are not allowed to trace processes belonging to other users, especially root.

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