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

16 lines
324 B
Text

rule misc_ooxml_core_properties
{
meta:
author = "Jason Batchelor"
company = "Emerson"
lastmod = "20150505"
desc = "Identify meta xml content within OOXML documents"
strings:
$xml = "<?xml version="
$core = "<cp:coreProperties xmlns:cp"
condition:
$xml at 0 and $core
}