rule WordDoc_PowerShell_URLDownloadToFile {
meta:
description = "Detects Word Document with PowerShell URLDownloadToFile"
license = "Detection Rule License 1.1 https://github.com/Neo23x0/signature-base/blob/master/LICENSE"
author = "Florian Roth (Nextron Systems)"
reference = "https://www.arbornetworks.com/blog/asert/additional-insights-shamoon2/"
date = "2017-02-23"
super_rule = 1
hash1 = "33ee8a57e142e752a9c8960c4f38b5d3ff82bf17ec060e4114f5b15d22aa902e"
hash2 = "388b26e22f75a723ce69ad820b61dd8b75e260d3c61d74ff21d2073c56ea565d"
hash3 = "71e584e7e1fb3cf2689f549192fe3a82fd4cd8ee7c42c15d736ebad47b028087"
id = "f76c5f91-f67c-5754-b771-73383aba4d64"
strings:
$w1 = "Microsoft Forms 2.0 CommandButton" fullword ascii
$w2 = "Microsoft Word 97-2003 Document" fullword ascii
$p1 = "powershell.exe" fullword ascii
$p2 = "URLDownloadToFile" fullword ascii
condition:
( uint16(0) == 0xcfd0 and 1 of ($w*) and all of ($p*) )
}