This hunt targets adversaries deploying GCleaner malware to exfiltrate sensitive credentials and financial data through covert command-and-control channels established after initial phishing or exploit kit infections. Proactively hunting for these specific IOCs in Azure Sentinel is critical to detect early-stage data theft before significant information loss occurs, given the high severity of this threat’s ability to operate silently within the network.
Malware Family: GCleaner Total IOCs: 3 IOC Types: sha256_hash, md5_hash, sha1_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha256_hash | cdb4ac5717e2bfe3bb375d15e53fd8741c4a35e7db4f2389c29c77d66bc5cc57 | payload | 2026-07-14 | 95% |
| sha1_hash | a912c5fa300ba329099d1ac7c71fa92452dae968 | payload | 2026-07-14 | 95% |
| md5_hash | 715d3af46531f2815ab9f67b47f2472d | payload | 2026-07-14 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - GCleaner
let malicious_hashes = dynamic(["cdb4ac5717e2bfe3bb375d15e53fd8741c4a35e7db4f2389c29c77d66bc5cc57", "a912c5fa300ba329099d1ac7c71fa92452dae968", "715d3af46531f2815ab9f67b47f2472d"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DeviceFileEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios for the ThreatFox: GCleaner IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Scheduled Enterprise Backup and Sync Operations
backup-agent-01, sync-service) or Process Names (VeeamAgent.exe, azcopy.exe). Additionally, exclude traffic destined for known backup IP ranges defined in your asset inventory.Patch Management and Software Update Deployments
*.update.microsoft.com, download.adobe.com). Furthermore, exclude connections originating from the specific service accounts used by these tools (e.g., svc-patch-deploy) during scheduled maintenance windows.Cloud Identity and Synchronization Services