This detection identifies the presence of the ASPack v1061b packer signature, which adversaries often employ to obfuscate malicious payloads and evade static analysis by compressing executable structures. A SOC team should proactively hunt for this indicator in Azure Sentinel because its low severity suggests it may represent a stealthy initial foothold or a benign false positive that requires manual triage to distinguish from sophisticated evasion tactics.
rule ASPackv1061bAlexeySolodovnikov
{
meta:
author="malware-lu"
strings:
$a0 = { 60 E8 [4] 5D 81 ED EA A8 43 ?? B8 E4 A8 43 ?? 03 C5 2B 85 78 AD 43 ?? 89 85 84 AD 43 ?? 80 BD 6E AD 43 }
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 4 specific false positive scenarios for the ASPackv1061bAlexeySolodovnikov detection rule, along with targeted filters and exclusions:
Scenario: Automated Patch Deployment via SCCM/Intune
.msi or .exe payloads generated by the deployment engine, which are legitimate and signed.ccmsetup.exe, Microsoft.Solitaire.Core.exe, or IntuneManagementExtension.exe. Additionally, filter alerts where the file hash matches known good hashes stored in the enterprise artifact repository (e.g., via a “Known Good Hash” allowlist).Scenario: Scheduled Antivirus Definition Updates
C:\ProgramData\McAfee\Agent\Updates or C:\Windows\System32\ccm\CcmExec. Implement a time-based filter to suppress alerts for this rule between 01:00 and 05:00 local time on weekdays when these scheduled jobs typically run.Scenario: Deployment of Internal Line-of-Business (LOB) Applications