MAL_APT_NK_Andariel_TigerRAT_Crowdsourced_Rule
Description
Detects the Tiger RAT variant used by Andariel
Query · yara
strings:
$m1 = ".?AVModuleKeyLogger@@" fullword ascii
$m2 = ".?AVModulePortForwarder@@" fullword ascii
$m3 = ".?AVModuleScreenCapture@@" fullword ascii
$m4 = ".?AVModuleShell@@" fullword ascii
$s1 = "\\x9891-009942-xnopcopie.dat" fullword wide
$s2 = "(%02d : %02d-%02d %02d:%02d:%02d)--- %s[Clipboard]" fullword ascii
$s3 = "[%02d : %02d-%02d %02d:%02d:%02d]--- %s[Title]" fullword ascii
$s4 = "del \"%s\"%s \"%s\" goto " ascii
// $s5 = "[<<]" fullword ascii // we don't need that short string and the rule probably doesn't lose anything without it, F.R.
condition:
uint16(0) == 0x5a4d and (
all of ($s*) or (
all of ($m*) and 1 of ($s*)
)
or (
2 of ($m*) and 2 of ($s*)
)
)