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

17 lines
597 B
Text

rule Generic_Dropper {
meta:
description = "Detects Dropper PDB string in file"
license = "Detection Rule License 1.1 https://github.com/Neo23x0/signature-base/blob/master/LICENSE"
author = "Florian Roth (Nextron Systems)"
reference = "https://goo.gl/JAHZVL"
date = "2018-03-03"
id = "60ce6a5c-2e12-515b-b8cb-8c87500cb37b"
strings:
$s1 = "\\Release\\Dropper.pdb"
$s2 = "\\Release\\dropper.pdb"
$s3 = "\\Debug\\Dropper.pdb"
$s4 = "\\Debug\\dropper.pdb"
condition:
uint16(0) == 0x5a4d and filesize < 900KB and 1 of them
}