← Back to SOC feed Coverage →

UPX 1.00 to 1.07

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

Hunt Hypothesis

This rule identifies the presence of UPX packers (versions 1.00 through 1.07) in executable files, a technique frequently employed by adversaries to compress malware and evade static analysis. Proactively hunting for these specific versions allows the SOC team to surface potentially obfuscated binaries in the environment, enabling earlier detection of stealthy payloads that may be leveraging compression to hide their true functionality.

YARA Rule

rule upx_1_00_to_1_07 : Packer
{
	meta:
		author="Kevin Falcoz"
		date_create="19/03/2013"
		description="UPX 1.00 to 1.07"

	strings:
		$str1={60 BE 00 ?0 4? 00 8D BE 00 B0 F? FF ?7 8? [3] ?0 9? [0-9] 90 90 90 90 [0-2] 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}

	condition:
		$str1 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