Current File : //proc/thread-self/root/kunden/usr/share/systemtap/examples/security-band-aids/cve-2017-6074.stp
#!/usr/bin/stap -g

probe module("dccp*").function("dccp_v?_connect") {
   $addr_len = 0;
   printf("%s[%d] DCCP socket connect denied\n", execname(), tid())
}
probe begin { printf("DCCP band-aid active\n") }
probe end,error { printf("DCCP band-aid shutdown\n") }