This hunt detects adversary activity involving specific Indicators of Compromise (IOCs) linked to the ClearFake campaign, which is known for deploying sophisticated fake antivirus tools to establish persistence and exfiltrate data. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify early-stage infections before they escalate into full-scale compromises, ensuring rapid containment of this high-severity threat vector.
Malware Family: ClearFake Total IOCs: 10 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | oionthzfg.en-us-morningfatmelter.com | payload_delivery | 2026-08-27 | 100% |
| domain | oz42q2a3.get-aquaburn.com | payload_delivery | 2026-08-27 | 100% |
| domain | get-aquaburn.com | payload_delivery | 2026-08-27 | 100% |
| domain | taschenmitdruck.de | payload_delivery | 2026-08-27 | 90% |
| domain | en-us-nurvealive.com | payload_delivery | 2026-08-27 | 100% |
| domain | laserimb.ch | payload_delivery | 2026-08-27 | 90% |
| domain | w0unb44m.geniusbrainsignal.us | payload_delivery | 2026-08-27 | 100% |
| domain | geniusbrainsignal.us | payload_delivery | 2026-08-27 | 100% |
| domain | eldertechsupport.com | payload_delivery | 2026-08-27 | 100% |
| domain | pig[.]369bbqsifangonline.com | botnet_cc | 2026-08-27 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - ClearFake
let malicious_domains = dynamic(["oionthzfg.en-us-morningfatmelter.com", "oz42q2a3.get-aquaburn.com", "get-aquaburn.com", "taschenmitdruck.de", "en-us-nurvealive.com", "laserimb.ch", "w0unb44m.geniusbrainsignal.us", "geniusbrainsignal.us", "eldertechsupport.com", "pig.369bbqsifangonline.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
Scheduled Antivirus Definition Updates
Process Name matches known AV update services (e.g., mpcmdrun.exe, CrowdStrikeService.exe) and the User Account is a dedicated service account (e.g., AV-Update-Svc). Additionally, filter out events occurring within the defined maintenance window (e.g., 02:00–04:00 local time).Software Deployment via Configuration Management Tools
Source IP belongs to the internal Configuration Management Server subnet (e.g., 10.50.20.x) or where the Parent Process Name is a known deployment agent (e.g., ccmsetup.exe, ansible-runner).Automated Backup and Archiving Jobs