MAL_Minimalistic_Backdoor_May26
Description
Detects minimalistic backdoor deployment where a shellcode loader downloads an encrypted payload and executes it in memory after RC4 decryption using a command-line provided key
Query · yara
strings:
$x1 = "Note: if multiple processes load the DLL," wide
$x2 = "Inject (shellcode file is RC4 ciphertext; key is a UTF-8 string" wide
$s1 = "Error: VirtualAllocEx failed, Win" wide
$s2 = "Try running as administrator; " wide
$s3 = ", shellcode size: " wide
$s4 = "input file path cannot be empty." wide
condition:
uint16(0) == 0x5a4d
and filesize < 50KB
and (
1 of ($x*)
or all of ($s*)
)