← Back to SOC feed Coverage →

ASPack

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

Hunt Hypothesis

Adversaries may employ the ASPack packer to compress and protect malicious executables, making static analysis more difficult and helping to evade signature-based detection tools. Proactively hunting for this behavior in Azure Sentinel allows the SOC team to identify potentially obfuscated payloads that could be used for initial access or privilege escalation, ensuring that compressed binaries are inspected for hidden malicious logic before they execute.

YARA Rule

rule aspack : Packer
{
	meta:
		author="Kevin Falcoz"
		date_create="25/02/2013"
		description="ASPack"

	strings:
		$str1={60 E8 00 00 00 00 5D 81 ED 5D 3B 40 00 64 A1 30 00 00 00 0F B6 40 02 0A C0 74 04 33 C0 87 00 B9 [2] 00 00 8D BD B7 3B 40 00 8B F7 AC} /*EntryPoint*/

	condition:
		$str1 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

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