Generic Phishing PDF Yara rule
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rule Generic_Phishing_PDF | |
{ | |
meta: | |
description = "Identifies generic phishing PDFs." | |
author = "@bartblaze" | |
date = "2019-03" | |
tlp = "White" | |
reference = "https://bartblaze.blogspot.com/2019/03/analysing-massive-office-365-phishing.html" | |
strings: | |
$pdf = {25504446} //%PDF | |
$s1 = "<xmp:CreatorTool>RAD PDF</xmp:CreatorTool>" | |
$s2 = "<x:xmpmeta xmlns:x=\"adobe:ns:meta/\" x:xmptk=\"DynaPDF" | |
condition: | |
$pdf at 0 and all of ($s*) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment