#include #include SEC("tracepoint/syscalls/sys_enter_execve") int hello(struct pt_regs *ctx) { bpf_printk("Hello, World!\n"); return 0; } char LICENSE[] SEC("license") = "GPL";