TurlaMosquito_Mal_3
Description
Detects malware sample from Turla Mosquito report
Query · yara
strings:
$x1 = "InstructionerDLL.dll" fullword ascii
$s1 = "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36" fullword wide
$s2 = "/scripts/m/query.php?id=" fullword wide
$s3 = "SELECT * FROM AntiVirusProduct" fullword ascii
$s4 = "Microsoft Update" fullword wide
condition:
uint16(0) == 0x5a4d and filesize < 400KB and (
pe.imphash() == "88488fe0b8bcd6e379dea6433bb5d7d8" or
( pe.exports("InstallRoutineW") and pe.exports("StartRoutine") ) or
$x1 or
3 of them
)