← Back to SOC feed Coverage →

eXPressor v14 CGSoftLabs

yara LOW Yara-Rules
community
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at Yara-Rules →
Retrieved: 2026-09-25T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets the presence of the eXPressor v14 packer, a tool commonly used by adversaries to compress and obfuscate malicious executables to evade static analysis and signature-based detection. Proactively hunting for this specific packer in Azure Sentinel allows the SOC to identify potentially obfuscated payloads that may have been deployed via phishing or initial access vectors, reducing the time to detect stealthy malware variants that bypass traditional endpoint protections.

YARA Rule

rule eXPressor_v14_CGSoftLabs: PEiD
{
    strings:
        $a = { 55 8B EC 83 EC ?? 53 56 57 EB 0C 45 78 50 72 2D 76 2E 31 2E 34 2E 2E B8 }
        $b = { 65 58 50 72 2D 76 2E 31 2E 34 2E }
    condition:
        for any of ($*) : ( $ at pe.entry_point )

}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

False Positive Guidance

Original source: https://github.com/Yara-Rules/rules/blob/main/packers/peid.yar