← Back to SOC feed Coverage →

UPXcrypterarchphaseNWC

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

Hunt Hypothesis

This detection identifies the execution of binaries packed with the UPX utility during the archiving phase, a technique frequently employed by adversaries to obscure malicious payloads and evade signature-based scanning. Proactively hunting for this behavior in Azure Sentinel is essential because UPX-packed executables often indicate early-stage delivery mechanisms where threat actors compress code to reduce file size while hiding suspicious attributes that may be missed by standard static analysis.

YARA Rule

rule UPXcrypterarchphaseNWC
{
      meta:
		author="malware-lu"
strings:
		$a0 = { BF [3] 00 81 FF [3] 00 74 10 81 2F ?? 00 00 00 83 C7 04 BB 05 [2] 00 FF E3 BE [3] 00 FF E6 00 00 00 00 }

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 UPXcrypterarchphaseNWC detection rule, including targeted filters and exclusions:

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