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

18 lines
348 B
Text
Raw Normal View History

/*
Description: None
Priority: 5
Scope: Against Attachment
Tags: None
URL:http://phishme.com/using-yara-to-break-cryptowall-phishing/
Created in PhishMe's Triage on September 14, 2015 2:35 PM
*/
rule docx_macro
{
strings:
$header="PK"
$vbaStrings="word/vbaProject.bin" nocase
condition:
$header at 0 and $vbaStrings
}