signature-base/yara/crime_evilcorp_dridex_banker.yar
2020-04-06 09:33:51 +02:00

29 lines
777 B
Plaintext

/*
https://twitter.com/VK_Intel/status/1247058432223477760
*/
import "pe"
rule crime_win32_dridex_socks5_mod {
meta:
description = "Detects Dridex socks5 module"
author = "@VK_Intel"
date = "2020-04-06"
reference = "https://twitter.com/VK_Intel/status/1247058432223477760"
strings:
$s0 = "socks5_2_x32.dll"
$s1 = "socks5_2_x64.dll"
condition:
any of ($s*) and pe.exports("start")
}
rule crime_win32_hvnc_banker_gen {
meta:
description = "Detects malware banker hidden VNC"
author = "@VK_Intel"
reference = "https://twitter.com/VK_Intel/status/1247058432223477760"
date = "2020-04-06"
condition:
pe.exports("VncStartServer") and pe.exports("VncStopServer")
}