This hunt detects adversary activity linked to the ClearFake campaign by correlating network and endpoint telemetry against a specific set of 11 known Indicators of Compromise (IOCs). Proactively hunting for these IOCs in Azure Sentinel is critical to identify early-stage infections and mitigate potential data exfiltration or lateral movement before the threat escalates.
Malware Family: ClearFake Total IOCs: 11 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | iypuztg.tashabeautystore.com | payload_delivery | 2026-07-30 | 100% |
| domain | shlwsw.stmariapharmacy.com | payload_delivery | 2026-07-30 | 100% |
| domain | stmariapharmacy.com | payload_delivery | 2026-07-30 | 100% |
| domain | nbcfchw.tamajailroster.org | payload_delivery | 2026-07-30 | 100% |
| domain | tamajailroster.org | payload_delivery | 2026-07-30 | 100% |
| domain | switchspineprint.com | payload_delivery | 2026-07-30 | 100% |
| domain | 0cppgosu.prairiefurnitureshop.com | payload_delivery | 2026-07-30 | 100% |
| domain | ajhgra.stephanie-bates.com | payload_delivery | 2026-07-30 | 100% |
| domain | stephanie-bates.com | payload_delivery | 2026-07-30 | 100% |
| domain | dlwkpdf.swirlscinnamonrolls.com | payload_delivery | 2026-07-30 | 100% |
| domain | swirlscinnamonrolls.com | payload_delivery | 2026-07-30 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - ClearFake
let malicious_domains = dynamic(["iypuztg.tashabeautystore.com", "shlwsw.stmariapharmacy.com", "stmariapharmacy.com", "nbcfchw.tamajailroster.org", "tamajailroster.org", "switchspineprint.com", "0cppgosu.prairiefurnitureshop.com", "ajhgra.stephanie-bates.com", "stephanie-bates.com", "dlwkpdf.swirlscinnamonrolls.com", "swirlscinnamonrolls.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 4 specific false positive scenarios for the ThreatFox: ClearFake IOCs detection rule, along with targeted mitigation strategies:
Scenario: Automated Endpoint Protection Updates
Process Name matches FalconSensor.exe, MsMpEng.exe, or DefenderService.exe AND the event time falls within the defined maintenance window. Alternatively, add the specific update server IPs to a global allow-list.Scenario: Scheduled Third-Party Backup Jobs
Source Process is identified as VeeamAgent.exe, vbrservice.exe, or AcronisBackupService.exe. Additionally, whitelist the specific destination IP ranges of the cloud storage providers associated with these backup jobs.Scenario: Internal Software Deployment via SCCM/Intune