This detection identifies potentially malicious executables exhibiting pseudo-signing characteristics associated with PE Protect and Anorganix obfuscation techniques, which adversaries often employ to evade signature-based defenses. Proactively hunting for these artifacts in Azure Sentinel allows the SOC team to uncover stealthy threats that may bypass standard security controls by mimicking legitimate software signatures while harboring hidden malicious payloads.
rule PseudoSigner02PEProtect09Anorganix
{
meta:
author="malware-lu"
strings:
$a0 = { 52 51 55 57 64 67 A1 30 00 85 C0 78 0D E8 07 00 00 00 58 83 C0 07 C6 90 C3 }
condition:
$a0 at pe.entry_point
}
This YARA rule can be deployed in the following contexts:
This rule contains 1 string patterns in its detection logic.
Here are 5 specific false positive scenarios for the PseudoSigner02PEProtect09Anorganix detection rule, including suggested filters and exclusions:
Scenario: Legitimate execution of Microsoft Defender Antivirus (or similar EDR) protection modules during scheduled updates.
MsMpEng.exe or associated PEProtect components when they load specific cryptographic signatures that mimic the “PseudoSigner” pattern defined in the Anorganix logic, particularly during the nightly update cycle.UpdateOrchestrator.exe (Windows Update) or MsMpEng.exe, and the file path contains \Program Files\Microsoft Defender Antivirus\.Scenario: Deployment of Sysinternals Process Monitor (ProcMon.exe) or similar forensic tools by Security Engineers.
ProcMon.exe, ProcessExplorer.exe, and LogParser.exe running under user accounts belonging to the Security_Ops or IT_Admin groups.Scenario: Automated backup jobs utilizing Veeam Backup & Replication agents on endpoint servers.
vrb.exe) frequently injects protection modules into memory that utilize a custom signing certificate structure resembling the Anorganix pattern, often triggering during the “Pre-Backup” phase where file integrity checks are performed.