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

19 lines
444 B
Text

// References:
// http://www.garykessler.net/library/file_sigs.html
// https://issues.apache.org/jira/browse/TIKA-257
rule ft_office_open_xml
{
meta:
author = "Jason Batchelor"
company = "Emerson"
lastmod = "20140915"
desc = "Simple metadata attribute indicative of Office Open XML format. Commonly seen in modern office files."
strings:
$OOXML = "[Content_Types].xml"
condition:
$OOXML at 30
}