Sneed-Reactivity/yara-mikesxrs/unknown/Windows_0day_Exploit.yara
Sam Sneed 08e8d462fe OMG ISTG PLS WORK
RED PILL 🔴 💊
2024-07-25 12:43:35 -05:00

22 lines
No EOL
647 B
Text

rule Windows_0day_Exploit_Developers_1 {
meta: description = "Windows 0day EPATHOBJ local ring0 Exploit - Developer Names" score = 60
strings:
$a = "taviso" fullword
$b = "cmpxchg8b" fullword
$c = "programmeboy" fullword
condition:
all of them
}
rule Windows_0day_Exploit_1 {
meta: description = "Windows 0day EPATHOBJ local ring0 Exploit" score = 70
strings:
$a = "PATHRECORD" fullword
$b = "HRGN" fullword
$c = "FlattenPath" fullword
$d = "EndPath" fullword
$e = "PolyDraw" fullword
condition:
all of them
}