This detection identifies adversary behavior involving the execution of the specific unpacking utility “Upackv032betaDwing,” which is frequently utilized to extract and analyze potentially malicious archives or obfuscated payloads. SOC teams should proactively hunt for this signature in Azure Sentinel to uncover early-stage reconnaissance activities where attackers leverage custom tools to bypass standard file inspection mechanisms before deploying their primary attack vectors.
rule Upackv032betaDwing
{
meta:
author="malware-lu"
strings:
$a0 = { E9 [4] 42 79 44 77 69 6E 67 40 00 00 00 50 45 00 00 4C 01 02 [20] 32 }
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 Upackv032betaDwing detection rule, including suggested filters and exclusions:
Scenario 1: Scheduled Antivirus Definition Updates via Upack Utility
upack.exe or similar) to extract daily definition updates from the vendor’s compressed payload before ingestion by the endpoint protection agent. This process triggers the rule during its extraction phase, mimicking the behavior of a malicious unpacker.Process Name equals upack.exe (or specific hash) AND Parent Process is a known service account like AntivirusUpdateService or Windows Task Scheduler.Scenario 2: IT Admin Deploying Software Packages via SCCM/Intune
Upackv032betaDwing logic matches the extraction of .msi or .cab files) on user endpoints during business hours, triggering the rule as it extracts application binaries.User Account belongs to the IT-Admins group AND the file path resides within the standard deployment directory (e.g., C:\ProgramData\Microsoft\IntuneManagementExtension\Downloads).Scenario 3: Automated Backup Archive Extraction by Veeam or Commvault