Sneed-Reactivity/yara-mikesxrs/patrickrolsen/misc_iocs.yar

14 lines
226 B
Text
Raw Normal View History

rule misc_iocs
{
meta:
author = "@patrickrolsen"
maltype = "Misc."
version = "0.1"
reference = "N/A"
strings:
$doc = {D0 CF 11 E0} //DOCFILE0
$s1 = "dw20.exe"
$s2 = "cmd /"
condition:
($doc at 0) and (1 of ($s*))
}