Volgmer_Malware
Description
Detects Volgmer malware as reported in US CERT TA17-318B
Query · yara
strings:
$x1 = "User-Agent: Mozillar/5.0" fullword ascii
$x2 = "[Cmd] - CMD_BOTCMD_CONNLOG_GET" fullword wide
$x3 = "[TestConnect To Bot] - Port = %d" fullword ascii
$x4 = "b50a338264226b6d57c1936d9db140ba74a28930270a083353645a9b518661f4fcea160d7" ascii
$s1 = "%sigfx%c%c%c.exe" fullword wide
$s2 = "H_%s_%016I64X_%04d%02d%02d%02d%02d%02d.TXT" fullword ascii
$s3 = "cmd.exe /c %s > %s 2>&1" fullword wide
$s4 = "%s\\dllcache\\%s.dll" fullword ascii
$s5 = "Cond Fail." fullword ascii
$s6 = "The %s %s%s" fullword ascii
$s7 = "%s \"%s\"%s \"%s\" %s \"%s\"" fullword ascii
$s8 = "DLL_Spider.dll" fullword ascii
condition:
filesize < 400KB and (
1 of ($x*) or /* Very specific strings */
( uint16(0) == 0x5a4d and 2 of them ) /* Others combined with the MZ header */
) or
/* Imphash */
( uint16(0) == 0x5a4d and pe.imphash() == "ea42395e901b33bad504798e0f0fd74b" )