SUSP_LNX_Base64_Download_Exec_Apr24
Description
Detects suspicious base64 encoded shell commands used for downloading and executing further stages
Query · yara
strings:
$sa1 = "curl http" base64
$sa2 = "wget http" base64
$sb1 = "chmod 777 " base64
$sb2 = "/tmp/" base64
condition:
1 of ($sa*)
and all of ($sb*)