Sneed-Reactivity/yara-mikesxrs/securityartwork/Meterpreter_rev_tcp.yar
Sam Sneed 08e8d462fe OMG ISTG PLS WORK
RED PILL 🔴 💊
2024-07-25 12:43:35 -05:00

16 lines
523 B
Text

rule Meterpreter_rev_tcp
{
meta:
description = "Meterpreter reverse TCP"
reference = "https://www.securityartwork.es/2015/03/20/deteccion-de-codigo-malicioso-con-yara-i/"
strings:
$ metadata "ab.exe" wide nocase
$ dll1 = "MSVCRT.dll" nocase
$ dll2 = "KERNEL32.dll" nocase
$ dll3 = "ADVAPI32.dll" nocase
$ dll4 = "WSOCK32.dll" nocase
$ dll5 = "WS2_32.dll" nocase
$ dll6 = "ntdll.dll" nocase
condition:
#metadata == 2 and all of ($ dll *)
}