signature-base/yara/gen_dropper_pdb.yar
2018-03-03 12:15:31 +01:00

16 lines
422 B
Plaintext

rule Generic_Dropper {
meta:
description = "Detects Dropper PDB string in file"
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
}