Sneed-Reactivity/yara-mikesxrs/phish me/PowerPoint_Embedded_OLE.yar

12 lines
283 B
Text
Raw Normal View History

rule PowerPoint_Embedded_OLE
{
meta:
description = "PPSX/PPTX Containers containing embedded data."
author = "PhishMe"
strings:
$magic = {50 4b}
$meta1 = "ppt/embeddings/oleObject"
$meta2 = "ppt/slides/"
condition:
$magic at 0 and all of ($meta*)
}