← Back to SOC feed Coverage →

ASPackv102bAlexeySolodovnikov

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

Hunt Hypothesis

This rule identifies executable files packed with the ASPack v1.02b compressor, a technique frequently used by threat actors to obscure binary characteristics and evade static analysis. Proactively hunting for these packed binaries in Azure Sentinel allows the SOC team to detect potentially malicious or obfuscated payloads that may be executing on endpoints or stored in cloud storage before they trigger more advanced detection logic.

YARA Rule

rule ASPackv102bAlexeySolodovnikov
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 60 E8 00 00 00 00 5D 81 ED 96 78 43 00 B8 90 78 43 00 03 C5 }
	$a1 = { 60 E8 [4] 5D 81 ED 96 78 43 ?? B8 90 78 43 ?? 03 C5 2B 85 7D 7C 43 ?? 89 85 89 7C 43 ?? 80 BD 74 7C 43 }

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