Elise_Jan18_1
Description
Detects Elise malware samples - fake Norton Security NavShExt.dll
Query · yara
strings:
$s1 = "NavShExt.dll" fullword wide
$s2 = "Norton Security" fullword wide
$a1 = "donotbotherme" fullword ascii
condition:
uint16(0) == 0x5a4d and filesize < 250KB and (
pe.imphash() == "e9478ee4ebf085d1f14f64ba96ef082f" or
( 1 of ($s*) and $a1 )
)