This hunt hypothesis targets the execution of files matching the ASPack v2001 signature by Alexey Solodovnikov to identify potential obfuscated malware or legitimate packer usage that may evade standard AV signatures. Proactive hunting for this specific YARA rule in Azure Sentinel is essential to distinguish between benign application behavior and early-stage adversary activity that leverages known packing techniques to conceal malicious payloads.
rule ASPackv2001AlexeySolodovnikov
{
meta:
author="malware-lu"
strings:
$a0 = { 60 E8 72 05 00 00 EB 4C }
condition:
$a0 at pe.entry_point
}
This YARA rule can be deployed in the following contexts:
This rule contains 1 string patterns in its detection logic.
Here are 5 specific false positive scenarios for the ASPackv2001AlexeySolodovnikov detection rule, tailored for an enterprise environment:
Scenario: Deployment of legacy third-party applications via SCCM or Intune.
setup.exe located in C:\Program Files\VendorApp\). Alternatively, exclude the entire installation directory path (C:\Program Files\VendorApp\) from scanning if the vendor confirms the use of ASPack v2001.Scenario: Execution of scheduled backup and maintenance jobs on file servers.
vssvc.exe or specific agent processes launch at 02:00 AM, they may be flagged as suspicious packing activity.VeeamAgentService.exe (or similar backup daemon) and the execution occurs within the defined maintenance window (e.g., 01:00–05:00).Scenario: Administrative distribution of internal utilities via Group Policy or GPO. *