CVE-2026-31431-Copy-Fail/bpftrace-scripts/bpftrace-af-alg-sendmsg.bt
2026-05-18 14:31:05 +08:00

6 lines
178 B
Text

kprobe:af_alg_sendmsg /comm == "copyfail_poc"/
{
$msg = (struct msghdr *)arg1;
printf("af_alg_sendmsg: size=0x%lx msg_flags=0x%x\n",
arg2, $msg->msg_flags);
}