This detection identifies potentially malicious or obfuscated Portable Executable (PE) files utilizing the PECompact v184 compression technique, which adversaries often employ to evade signature-based analysis by reducing file size and hiding embedded payloads. A proactive hunt is essential in Azure Sentinel to uncover these compressed artifacts that may bypass initial scanning thresholds, allowing analysts to validate their legitimacy before they execute within the environment.
rule PECompactv184
{
meta:
author="malware-lu"
strings:
$a0 = { 33 C0 8B C4 83 C0 04 93 8B E3 8B 5B FC 81 }
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 PECompactv184 detection rule, along with recommended filters or exclusions:
Scenario: Automated deployment of the Microsoft Office Click-to-Run (C2R) update service.
OfficeClickToRun.exe process frequently utilizes compression algorithms that match the PECompact signature when downloading and applying cumulative updates in the background.\Microsoft Office ClickToRun\ and the parent process is Ctfmon.exe or OfficeClickToRun.exe.Scenario: Scheduled antivirus definition update by Symantec Endpoint Protection (SEP).
Rtvscan64.exe) often unpacks compressed definition packages that trigger the PECompact signature during its nightly maintenance window.Rtvscan64.exe when running under the user context NT SERVICE\Symantec LiveUpdate.Scenario: Execution of the Windows System Center Configuration Manager (SCCM) client update task.
ccmexec.exe process compresses and stages application payloads before installation, which often mimics the PECompact structure detected by this rule./install or /update and the parent process is WUAHandler.exe.Scenario: Background execution of the Adobe Acrobat Reader “Auto-Update” service.
AdobeARM.exe (Acrobat Update Manager) frequently compresses temporary installation files to optimize disk I/O, triggering a match on the PECompact signature during off-hours.