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

13 lines
297 B
Text

import "pe"
rule misc_upx_packed_binary
{
meta:
author = "Jason Batchelor"
company = "Emerson"
lastmod = "20150520"
desc = "Detect section names indicative of UPX packed PE files"
condition:
(pe.sections[0].name == "UPX0" and pe.sections[1].name == "UPX1")
}