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

12 lines
No EOL
283 B
Text

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*)
}