This detection identifies the execution of a specific unpacking utility (WinUpack v030 beta) that may indicate an adversary attempting to extract or analyze compressed payloads as part of a multi-stage attack chain. Proactively hunting for this activity in Azure Sentinel allows the SOC team to validate legitimate administrative usage against potential malicious behavior, ensuring early visibility into supply chain compromises or fileless attacks leveraging custom unpacking tools.
rule WinUpackv030betaByDwing
{
meta:
author="malware-lu"
strings:
$a0 = { E9 [4] 42 79 44 77 69 6E 67 40 00 00 00 50 45 00 00 }
$a1 = { E9 [4] 42 79 44 77 69 6E 67 40 00 00 00 50 45 00 00 4C 01 02 }
condition:
$a0 or $a1
}
This YARA rule can be deployed in the following contexts:
This rule contains 2 string patterns in its detection logic.
Here are 5 specific false positive scenarios for the WinUpackv030betaByDwing detection rule, including targeted filters and exclusions:
Scenario: Microsoft Office Click-to-Run Self-Update Execution
OfficeClickToRun.exe) frequently extracts temporary installer packages using the WinUpack engine during background updates. This often occurs on a scheduled basis (e.g., every Tuesday at 2:00 AM) or upon user login when new features are pushed.OfficeClickToRun.exe and the file path contains \Microsoft Office Click-to-Run\. Alternatively, filter by the specific SHA-256 hash of the known good update agent if available in your EDR inventory.Scenario: Adobe Acrobat Reader DC Background Updater
AdobeARM.exe (Adobe Acrobat Reader) updater utilizes WinUpack to unpack and deploy new PDF engine components or security patches. This is a common activity in enterprise environments where the “Auto-update” policy is enforced via Group Policy, triggering extraction events that mimic malware behavior.AdobeARM.exe located within the standard installation directory (C:\Program Files (x86)\Common Files\Adobe\ARM\1.0\). Ensure the rule ignores events where the command line contains arguments related to “update” or “install”.Scenario: SCCM/MECM Application Deployment Packages
ccmexec.exe) often extracts compressed installation bundles using WinUpack. This is particularly prevalent when deploying line-of-business applications that utilize custom installers