← Back to SOC feed Coverage →

PECompactv092

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-08-20T11:00:00Z · Confidence: medium

Hunt Hypothesis

This detection identifies potentially obfuscated or packed executable files that utilize specific compression signatures to evade traditional signature-based scanning. A proactive hunt is essential in Azure Sentinel to uncover stealthy malware that may bypass initial ingestion filters by analyzing these compacted PE structures for anomalous behavior before they execute on endpoints.

YARA Rule

rule PECompactv092
{
      meta:
		author="malware-lu"
strings:
		$a0 = { EB 06 68 [4] C3 9C 60 BD [4] B9 02 [3] B0 90 8D BD A5 4F 40 ?? F3 AA 01 AD 04 51 40 ?? FF B5 }

condition:
		$a0 at pe.entry_point
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

False Positive Guidance

Here are 5 specific false positive scenarios for the PECompactv092 detection rule, including suggested filters and exclusions tailored for an enterprise environment:

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