Unverified Commit 508a5a3a by Jaume Martin Committed by GitHub

Merge pull request #345 from knowmalware/pe_sections

Fix suspicious_packer_section rule
parents c80ce1e9 5c6545ae
......@@ -82,5 +82,8 @@ rule suspicious_packer_section : packer PE {
$s63 = "UPX!" wide ascii
condition:
(uint16(0) == 0x457f and 1 of them)
// DOS stub signature PE signature
uint16(0) == 0x5a4d and uint32be(uint32(0x3c)) == 0x50450000 and (
for any of them : ( $ in (0..1024) )
)
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment