← Back to SOC feed Coverage →

ASPack v107b DLL

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

Hunt Hypothesis

This hypothesis targets the presence of DLL files packed with ASPack v107b, a technique frequently employed by adversaries to obfuscate malicious payloads and evade static analysis. Proactively hunting for these artifacts in Azure Sentinel allows the SOC team to identify potential malware droppers or injected components early in the kill chain, reducing the dwell time of threats that leverage common packers to hide their intent.

YARA Rule

rule ASPack_v107b_DLL: PEiD
{
    strings:
        $a = { 90 90 90 75 }
        $b = { 60 E8 00 00 00 00 5D ?? ?? ?? ?? ?? ?? B8 ?? ?? ?? ?? 03 C5 }
    condition:
        for any of ($*) : ( $ 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/peid.yar