This detection identifies the execution of files packed with the SimplePack10Xbagie compressor, a technique often employed by adversaries to obfuscate malicious payloads and evade signature-based security controls. Proactively hunting for this behavior in Azure Sentinel is essential because low-severity packing events can serve as an early indicator of stealthy fileless attacks or staged compromises that might otherwise be overlooked during routine monitoring.
rule SimplePack10Xbagie
{
meta:
author="malware-lu"
strings:
$a0 = { 60 E8 00 00 00 00 5B 8D 5B FA 6A 00 FF 93 [2] 00 00 89 C5 8B 7D 3C 8D 74 3D 00 8D BE F8 00 00 00 8B 86 88 00 00 00 09 C0 }
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 SimplePack10Xbagie detection rule, including recommended filters and exclusions:
Scenario: Automated Software Deployment via SCCM/Intune
.msi or .appx packages that contain the specific byte sequence triggering SimplePack10Xbagie.Microsoft SCCM Client Agent (ccmsetup.exe) and Intune Management Extension (IntuneManagementExtension.exe). Additionally, exclude file paths under standard staging directories like C:\Windows\CCM\Cache or C:\ProgramData\Microsoft\IntuneManagementExtension.Scenario: Antivirus Real-Time Scanning of Archive Files
SimplePack10Xbagie rule detects a specific compression signature often found in backup logs or installer archives, it may flag the scanning process itself when it extracts these files into temporary directories.MsMpEng.exe, FalconSensorService.exe) from triggering this rule. Furthermore, add a path exclusion for temporary extraction folders: C:\Users\<User>\AppData\Local\Temp and C:\Windows\Temp.Scenario: Scheduled System Backup Jobs (Veeam or Acronis)