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

15 lines
No EOL
295 B
Text

// Copyright (C) 2013 Claudio "nex" Guarnieri
rule embedded_pe
{
meta:
author = "nex"
description = "Contains an embedded PE32 file"
strings:
$a = "PE32"
$b = "This program"
$mz = { 4d 5a }
condition:
($a and $b) and not ($mz at 0)
}