← Back to SOC feed Coverage →

UPX290LZMAMarkusOberhumerLaszloMolnarJohnReiser

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

Hunt Hypothesis

This detection identifies executable files packed with the UPX utility, a common obfuscation technique used by adversaries to conceal malicious payloads and evade signature-based analysis. The SOC team should proactively hunt for these instances in Azure Sentinel because UPX-packed binaries often indicate early-stage fileless attacks or supply chain compromises that require behavioral inspection beyond standard antivirus scanning.

YARA Rule

rule UPX290LZMAMarkusOberhumerLaszloMolnarJohnReiser
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 60 BE [4] 8D BE [4] 57 83 CD FF 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 [4] 90 90 }
	$a1 = { 60 BE [4] 8D BE [4] 57 83 CD FF EB 10 90 90 90 90 90 90 8A 06 46 88 07 47 01 DB 75 07 8B 1E 83 EE FC 11 DB 72 ED B8 01 00 00 00 01 DB 75 07 8B 1E 83 EE FC 11 DB 11 C0 01 DB }

condition:
		$a0 at pe.entry_point or $a1 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

Here are 4 specific false positive scenarios for the detection rule UPX290LZMAMarkusOberhumerLaszloMolnarJohnReiser, which targets executables packed with UPX (a popular executable packer often used by malware to hide code):

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