如何从 setcap 可执行文件获取核心转储?

发布于 2024-11-28 00:34:50 字数 428 浏览 4 评论 0原文

为了防止特权数据逃逸,Linux 上的 setcap 可执行文件不会转储核心:

ijw@build$ cat > test.c
main() { abort(); }
ijw@build$ gcc test.c
test.c: In function ‘main’:
test.c:1: warning: incompatible implicit declaration of built-in function ‘abort’
ijw@build$ ./a.out 
Aborted (core dumped)
ijw@build$ sudo setcap "cap_net_admin=+ep" a.out                 
ijw@build$ ./a.out 
Aborted

当您正在调试并且确实想要查看核心文件时,有什么方法可以启用它吗?

To prevent the escape of privileged data, setcap executables on Linux don't dump core:

ijw@build$ cat > test.c
main() { abort(); }
ijw@build$ gcc test.c
test.c: In function ‘main’:
test.c:1: warning: incompatible implicit declaration of built-in function ‘abort’
ijw@build$ ./a.out 
Aborted (core dumped)
ijw@build$ sudo setcap "cap_net_admin=+ep" a.out                 
ijw@build$ ./a.out 
Aborted

Is there any way to enable it when you're debugging and actually want to see the core file?

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

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

发布评论

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

评论(1

冷弦 2024-12-05 00:34:50

经过更多研究后我有两个答案。

  1. 您可以完全更改系统行为。除了单用户开发机器之外,这并不真正适合,但它确实有效:

    回声1> /proc/sys/fs/suid_dumpable
    

    经过测试,有效。

  2. 您可以通过调用其中的 prctl() 来更改特定程序的行为:

    prctl(PR_SET_DUMPABLE, 1);
    

    这样,特权程序自行决定它应该是可转储的,并且整个系统不受影响。

    我没有尝试过这个。

I have two answers after more research.

  1. You can change the system behaviour in its entirety. This isn't really suitable beyond a one user development machine but it does the trick:

    echo 1 > /proc/sys/fs/suid_dumpable
    

    Tested, works.

  2. You can change the behaviour of the specific program by calling prctl() in it:

    prctl(PR_SET_DUMPABLE, 1);
    

    In this way, the privileged program determines for itself that it should be dumpable, and the system as a whole is not affected.

    I've not tried this one.

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