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

15 lines
286 B
Text

rule ft_jar
{
meta:
author = "Jason Batchelor"
company = "Emerson"
lastmod = "20150810"
desc = "Signature to detect JAR files"
strings:
$pk_header = { 50 4B 03 04 }
$jar = "META-INF/MANIFEST.MF"
condition:
$pk_header at 0 and $jar
}