Sneed-Reactivity/yara-mikesxrs/AirBnB/hacktool_macos_exploit_tpwn.yara

15 lines
562 B
Text
Raw Permalink Normal View History

rule hacktool_macos_exploit_tpwn
{
meta:
description = "tpwn exploits a null pointer dereference in XNU to escalate privileges to root."
reference = "https://www.rapid7.com/db/modules/exploit/osx/local/tpwn"
author = "@mimeframe"
strings:
$a1 = "[-] Couldn't find a ROP gadget, aborting." wide ascii
$a2 = "leaked kaslr slide," wide ascii
$a3 = "didn't get root, but this system is vulnerable." wide ascii
$a4 = "Escalating privileges! -qwertyoruiop" wide ascii
condition:
2 of ($a*)
}