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

19 lines
No EOL
454 B
Text

/*
Description: This rule keys on email headers that may have been sent from a malicious PHP script on a compromised webserver.
Priority: 4
Scope: Against Email
Tags: None
Author: P.Burbage
Created in PhishMe's Triage on September 1, 2015 1:43 PM
*/
rule PM_Email_Sent_By_PHP_Script
{
strings:
$php1="X-PHP-Script" fullword
$php2="X-PHP-Originating-Script" fullword
$php3="/usr/bin/php" fullword
condition:
any of them
}