This hunt detects adversary activity by matching network and endpoint telemetry against specific indicators of compromise (IOCs) linked to the ClearFake threat actor. Proactively hunting for these IOCs in Azure Sentinel is critical because ClearFake employs sophisticated evasion techniques that may bypass standard signature-based detections, requiring manual investigation to identify early-stage compromises.
Malware Family: ClearFake Total IOCs: 13 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | ixejqlu.wavelu.com | payload_delivery | 2026-07-29 | 100% |
| domain | zhdten.paparomanospizzaclintontownship.com | payload_delivery | 2026-07-29 | 100% |
| domain | crcmb1nm.goodangpao.com | payload_delivery | 2026-07-29 | 100% |
| domain | acisvwr.zodiacsmoke.com | payload_delivery | 2026-07-29 | 100% |
| domain | zodiacsmoke.com | payload_delivery | 2026-07-29 | 100% |
| domain | hkbtnx.pamsribbonsandroses.com | payload_delivery | 2026-07-29 | 100% |
| domain | iswypre.zalabia.net | payload_delivery | 2026-07-29 | 100% |
| domain | zalabia.net | payload_delivery | 2026-07-29 | 100% |
| domain | dcgnyc.nathanaelappliances.com | payload_delivery | 2026-07-29 | 100% |
| domain | hngbkm.wifewithabudget.com | payload_delivery | 2026-07-29 | 100% |
| domain | wifewithabudget.com | payload_delivery | 2026-07-29 | 100% |
| domain | ydmtrvn.zagspizzamenu.com | payload_delivery | 2026-07-29 | 100% |
| domain | zagspizzamenu.com | payload_delivery | 2026-07-29 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - ClearFake
let malicious_domains = dynamic(["ixejqlu.wavelu.com", "zhdten.paparomanospizzaclintontownship.com", "crcmb1nm.goodangpao.com", "acisvwr.zodiacsmoke.com", "zodiacsmoke.com", "hkbtnx.pamsribbonsandroses.com", "iswypre.zalabia.net", "zalabia.net", "dcgnyc.nathanaelappliances.com", "hngbkm.wifewithabudget.com", "wifewithabudget.com", "ydmtrvn.zagspizzamenu.com", "zagspizzamenu.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 |
Here are specific false positive scenarios and corresponding filters for the ThreatFox: ClearFake IOCs detection rule in an enterprise environment:
Scenario: Security Team Manual IOC Ingestion via Threat Intelligence Platform
siem-ingest, threat-intel-sync, or specific service accounts used by the threat intelligence platform (e.g., svc_ti_sync). Additionally, filter out traffic originating from the Security Operations Center (SOC) subnet IP range.Scenario: Scheduled Antivirus Definition and Reputation Updates
Process Name being the specific AV updater service (e.g., MsMpSvc.exe, Symantec Antivirus Update Service) and restrict the rule to trigger only outside of standard maintenance windows (e.g., 02:00–04:00 UTC). Alternatively, exclude traffic destined for known vendor update domains (e.g., *.microsoft.com or *.symantec.com).Scenario: Automated Compliance and Audit Scanning Jobs