← Back to SOC feed Coverage →

PEBundlev02v20x

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-06T11:00:01Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets the presence of PE bundle executables, which adversaries often use to obfuscate malicious payloads or stage components of a multi-stage attack within a single file. Proactively hunting for these bundles in Azure Sentinel helps identify hidden persistence mechanisms or initial access artifacts that may evade standard signature-based detections due to their low severity and complex structure.

YARA Rule

rule PEBundlev02v20x
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 9C 60 E8 02 [3] 33 C0 8B C4 83 C0 04 93 8B E3 8B 5B FC 81 EB [2] 40 ?? 87 DD 6A 04 68 ?? 10 [2] 68 ?? 02 [2] 6A ?? FF 95 }

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

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