← Back to SOC feed Coverage →

PEStubOEPv1x

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

Hunt Hypothesis

This rule identifies executable files where the entry point offset (OEP) is located within the PE header, a structural anomaly often exploited by packers or obfuscated malware to hide the true code execution flow. Proactively hunting for these irregularities in Azure Sentinel allows the SOC team to surface potentially stealthy or packed binaries that may bypass standard signature-based detections, enabling early investigation of suspicious artifacts before they establish a foothold in the environment.

YARA Rule

rule PEStubOEPv1x
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 40 48 BE 00 [2] 00 40 48 60 33 C0 B8 [3] 00 FF E0 C3 C3 }

condition:
		$a0
}

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

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