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

14 lines
No EOL
269 B
Text

rule cmd_shell
{
meta:
author = "@patrickrolsen"
reference = "Windows CMD Shell"
filetype = "EXE"
version = "0.1"
date = "1/30/2014"
strings:
$s1 = "cmd.pdb"
$s2 = "CMD Internal Error %s"
condition:
uint16(0) == 0x5A4D and (all of ($s*)) and filesize <= 380KB
}