← Back to SOC feed Coverage →

ASPackv10801AlexeySolodovnikov

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

Hunt Hypothesis

This hypothesis targets the presence of executables packed with ASPack version 1.08.01, a known packer frequently utilized by threat actors to compress binaries and obscure their code from static analysis tools. Proactively hunting for this specific signature in Azure Sentinel allows the SOC to identify potentially malicious or obfuscated payloads that may have been introduced via phishing or supply chain attacks, ensuring that low-severity but high-impact stealth techniques are not overlooked during routine monitoring.

YARA Rule

rule ASPackv10801AlexeySolodovnikov
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 60 EB 0A 5D EB 02 FF 25 45 FF E5 E8 E9 E8 F1 FF FF FF E9 81 [3] 44 00 BB 10 ?? 44 00 03 DD 2B 9D }
	$a1 = { 60 EB 0A 5D EB 02 FF 25 45 FF E5 E8 E9 E8 F1 FF FF FF E9 81 [3] 44 ?? BB 10 ?? 44 ?? 03 DD 2B 9D }
	$a2 = { 60 EB ?? 5D EB ?? FF [5] E9 }

condition:
		$a0 at pe.entry_point or $a1 at pe.entry_point or $a2 at pe.entry_point
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 3 string patterns in its detection logic.

False Positive Guidance

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