← Back to SOC feed Coverage →

SimpleUPXCryptorv3042005multilayerencryptionMANtiCORE

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

Hunt Hypothesis

This hypothesis targets the presence of the SimpleUPX Cryptor, a tool frequently used by adversaries to compress and obfuscate malicious payloads to evade static analysis and signature-based detection. Proactively hunting for this specific cryptor in Azure Sentinel allows the SOC to identify early-stage intrusion attempts or dropped binaries that may be leveraging multi-layer encryption to hide their true functionality before execution.

YARA Rule

rule SimpleUPXCryptorv3042005multilayerencryptionMANtiCORE
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 60 B8 [3] 00 B9 18 00 00 00 80 34 08 ?? E2 FA 61 68 [3] 00 C3 }
	$a1 = { 60 B8 [4] B9 18 00 00 00 80 34 08 ?? E2 FA 61 68 [4] C3 }

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

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