2
、Linux上setcapの実行可能ファイルは、コアをダンプしません:setcap実行ファイルからコアダンプを取得するにはどうすればよいですか?特権データの流出を防ぐため
[email protected]$ cat > test.c
main() { abort(); }
[email protected]$ gcc test.c
test.c: In function ‘main’:
test.c:1: warning: incompatible implicit declaration of built-in function ‘abort’
[email protected]$ ./a.out
Aborted (core dumped)
[email protected]$ sudo setcap "cap_net_admin=+ep" a.out
[email protected]$ ./a.out
Aborted
あなたは、デバッグと実際にコアファイルを見たいと思っているときにそれを有効にする方法はありますか?
コアダンプは有効になっていますか? 'ulimit -c unlimited' – wallyk
うん、私は問題なしで他のすべてのものにコアダンプを使用する。 – ijw