signature-base/yara/gen_dropper_pdb.yar

17 lines
488 B
Plaintext
Raw Normal View History

2018-03-03 11:15:31 +00:00
rule Generic_Dropper {
meta:
description = "Detects Dropper PDB string in file"
license = "https://creativecommons.org/licenses/by-nc/4.0/"
2018-03-03 11:15:31 +00:00
author = "Florian Roth"
reference = "https://goo.gl/JAHZVL"
date = "2018-03-03"
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
}