MAL_WebMonitor_RAT
Description
Detects WebMonitor RAT
Query · yara
strings:
$x1 = "send_keylog_stream_start" fullword wide
$x2 = "KEYLOG_STREAM_STOP" fullword wide
$s1 = "SHELL_EXEC" fullword wide
$s2 = "send_shell_exec" fullword wide
$s3 = "send_connections_get" fullword wide
$a1 = "Select * from Win32_PerfRawData_PerfProc_Process where IDProcess = '" fullword wide
$a2 = "Select * from Win32_Process WHERE handle =" fullword wide
$a3 = "Select * from Win32_Process where ProcessId=" fullword wide
$a4 = "Select * from Win32_ComputerSystem" fullword wide
$a5 = "The service is in the process of being continued" fullword wide
$a6 = "tcpdump" fullword wide
$a7 = "memdump" fullword wide
$a8 = "<val1>Processor</val1>" fullword wide
$a9 = "Win32 share process" fullword wide
condition:
uint16(0) == 0x5a4d and filesize < 1000KB and (
1 of ($x*) or
( 2 of ($s*) and 2 of ($a*) ) or
7 of them
)