MAL_RANSOM_Gentlemen_Jun26_1
Description
Detects The Gentlemen ransomware Windows locker (Storm-2697), a self-propagating Go-based encryptor
Query · yara
strings:
$x1 = "README-GENTLEMEN.txt" ascii /* ransom note dropped into each encrypted directory */
$x2 = "gentlemen.bmp" ascii /* wallpaper dropped to %TEMP% and set as desktop background */
$x3 = "gentlemen_system" ascii /* scheduled task created for privilege escalation */
$s1 = "[+] Encryption started" ascii /* locker console output */
$s2 = "Encrypt only mapped" ascii /* '--shares' run option */
$s3 = "Silent mode" ascii /* '--silent' run option */
condition:
uint16(0) == 0x5A4D and filesize < 30MB
and (
2 of ($x*)
or ( 1 of ($x*) and 2 of ($s*) )
)