????

Your IP : 216.73.216.174


Current Path : /usr/share/systemtap/examples/security-band-aids/
Upload File :
Current File : //usr/share/systemtap/examples/security-band-aids/cve-2015-3456.stp

probe process("/usr/bin/qemu-system-*").function("fdctrl_write") {
  $reg = (($reg & ~7) | 6) # replace register address with 0x__6
  if (!noted[pid()]) { noted[pid()]=1; println("defanging fdc writes, pid=", pid()) }
}
global noted%