This detection identifies potential file compression or archiving activities that may indicate an adversary attempting to consolidate data for exfiltration or obfuscate malicious artifacts within the environment. Proactive hunting for this behavior in Azure Sentinel is essential to uncover early-stage lateral movement or data staging actions that could precede a larger breach, even when initial severity signals are low.
rule PCShrink071beta
{
meta:
author="malware-lu"
strings:
$a0 = { 01 AD 54 3A 40 00 FF B5 50 3A 40 00 6A 40 FF 95 88 3A 40 00 }
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 PCShrink071beta detection rule, including suggested filters and exclusions:
Scenario: Scheduled Disk Cleanup via Windows Task Scheduler
cleanmgr.exe or PowerShell scripts to reclaim disk space on user workstations. This process often invokes the PCShrink utility (or similar compression tools) which matches the YARA signature due to its file modification patterns and specific registry writes during optimization.TaskScheduler.exe or powershell.exe running under the “SYSTEM” account, specifically targeting the command line arguments containing /clean or PCShrink.Scenario: Endpoint DLP Agent Scanning (Symantec/McAfee)
\Program Files\Symantec or \McAfee, and filter out events where the ImageFileName ends in DLPCompressor.exe or similar helper names associated with the DLP suite.Scenario: IT Admin Performing Manual Defragmentation