Skip to content

Commit ee52952

Browse files
committed
Add YARA rule for SimplePack packer detection
Introduced a new rule 'Packer__SimplePack' to detect PE files packed with SimplePack by checking for a section named '.spack'.
1 parent 5077e43 commit ee52952

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

yara_rules/DiE_InterestingThings_by_DosX.yar

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,16 @@ rule Packer__SoftwareCompress {
123123
)
124124
}
125125

126+
rule Packer__SimplePack {
127+
condition:
128+
IsPE and
129+
IsNative and (
130+
for any i in (0..pe.number_of_sections - 1) : (
131+
pe.sections[i].name == ".spack"
132+
)
133+
)
134+
}
135+
126136
rule Protection__obfus_h {
127137
condition:
128138
IsPE and

0 commit comments

Comments
 (0)