← Back to SOC feed Coverage →

UPXSCRAMBLER306OnToL

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 files packed with the UPX utility that exhibit specific scrambling behaviors indicative of obfuscation techniques often employed by adversaries to conceal malicious payloads within legitimate applications. A proactive hunt is essential in Azure Sentinel because these compressed and scrambled executables frequently evade static signature-based analysis, requiring dynamic inspection to uncover hidden threats before they execute on endpoints.

YARA Rule

rule UPXSCRAMBLER306OnToL
{
      meta:
		author="malware-lu"
strings:
		$a0 = { E8 00 00 00 00 59 83 C1 07 51 C3 C3 BE [4] 83 EC 04 89 34 24 B9 80 00 00 00 81 36 [4] 50 B8 04 00 00 00 50 03 34 24 58 58 83 E9 03 E2 E9 EB D6 }

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 4 specific false positive scenarios for the UPXSCRAMBLER306OnToL detection rule, which identifies executables packed with UPX (Ultimate Packer for eXecutables) that may be flagged as suspicious due to their compressed nature:

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