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

14 lines
468 B
Text

rule SUSP_CMD_Var_Expansion {
meta:
description = "Detects Office droppers that include a variable expansion string"
author = "Florian Roth (Nextron Systems)"
reference = "https://twitter.com/asfakian/status/1044859525675843585"
date = "2018-09-26"
score = 60
id = "3f3ebea0-1d33-513d-b32b-9d87607525e8"
strings:
$a1 = " /V:ON" ascii wide fullword
condition:
uint16(0) == 0xcfd0 and filesize < 500KB and $a1
}