← Back to SOC feed Coverage →

UPXv103v104

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

Hunt Hypothesis

This detection identifies executables packed with UPX versions 103 and 104, which adversaries frequently utilize to obscure malicious payloads and evade static analysis by compressing binary structures. A proactive hunt is essential in Azure Sentinel because these specific UPX variants are often employed as a first-stage defense mechanism to conceal initial command-and-control traffic or embedded scripts that may otherwise bypass standard signature-based defenses.

YARA Rule

rule UPXv103v104
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 8A 06 46 88 07 47 01 DB 75 07 8B 1E 83 EE FC 11 DB 8A 07 72 EB B8 01 00 00 00 01 DB 75 07 8B 1E 83 EE FC 11 DB 11 C0 01 DB 73 ?? 75 ?? 8B 1E 83 EE FC }

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

Here are 5 specific false positive scenarios for the UPXv103v104 detection rule, along with recommended filters and exclusions tailored for an enterprise environment:

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