← Back to SOC feed Coverage →

UPX293300LZMAMarkusOberhumerLaszloMolnarJohnReiser

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

Hunt Hypothesis

This detection identifies executable files packed with the UPX utility, a technique frequently employed by adversaries to obscure malicious payloads and evade static signature-based analysis. Proactively hunting for these compressed binaries in Azure Sentinel is essential because UPX-packed executables often serve as initial delivery mechanisms for fileless attacks or advanced persistent threats that may bypass standard antivirus solutions.

YARA Rule

rule UPX293300LZMAMarkusOberhumerLaszloMolnarJohnReiser
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 60 BE [4] 8D BE [4] 57 89 E5 8D 9C 24 [4] 31 C0 50 39 DC 75 FB 46 46 53 68 [4] 57 83 C3 04 53 68 [4] 56 83 C3 04 53 50 C7 03 03 00 02 00 90 90 90 90 90 }

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

Based on the rule title UPX293300LZMAMarkusOberhumerLaszloMolnarJohnReiser, this detection targets executables packed with UPX (Ultimate Packer for Executables), a widely used compression tool often associated with the authors Markus Oberhumer, Laszlo Molnar, and John Reiser. In an enterprise environment, legitimate software frequently utilizes UPX to reduce binary size, which can trigger false positives if the rule assumes all UPX-packed files are suspicious (e.g., potential malware hiding code).

Here are 5 specific scenarios representing legitimate use cases that would trigger this rule, along with suggested filters:


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