Hacker News new | ask | show | jobs
by bruce_one 75 days ago
eBPF is a great tool to use for debugging this kind of thing too, e.g. [bpftrace](https://bpftrace.org) has an [execsnoop](https://github.com/bpftrace/bpftrace/blob/master/tools/execs...) script for looking at everything being exec'd on the system :-)

(No need to use bpftrace, just an easy example :-) )

1 comments

Or just `strace`.
Seconded. Way simpler than BPF, especially when all you want to see is syscalls.