MAL_APT_NK_Andariel_Grease2
Description
Detects the Grease2 malware family used by Andariel
Query · yara
strings:
/* I bet this was an error and fixed the strings - I allow you to kick my butt when I'm wrong
$str_rdpconf = "c: \\windows\\temp\\RDPConf.exe" fullword nocase
$str_rdpwinst = "c: \\windows\\temp\\RDPWInst.exe" fullword nocase
*/
$str_rdpconf = "emp\\RDPConf.exe" // I removed the beginning of the string because the spaces looked like an error and I don't want to use nocase here, F.R.
$str_rdpwinst = "emp\\RDPWInst.exe"
$str_net_user = "net user"
$str_admins_add = "net localgroup administrators"
condition:
uint16(0) == 0x5A4D and
all of them