Sneed-Reactivity/yara-mikesxrs/EmersonElectricCo/misc_ooxml_core_properties.yara

17 lines
324 B
Text
Raw Normal View History

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
}