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

16 lines
332 B
Text

rule aspack {
meta:
description = "ASPack packed file"
block = false
quarantine = false
strings:
$mz = "MZ"
$aspack_section = {2E61737061636B00}
$adata_section = {2E61646174610000}
condition:
$mz at 0 and $aspack_section at 0x248 and $adata_section at 0x270
}