This hunt targets the presence of known ClearFake IOCs, which are frequently leveraged by threat actors to establish initial access or execute malicious payloads within the environment. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify compromised assets before the adversary can leverage them for lateral movement or data exfiltration.
Malware Family: ClearFake Total IOCs: 14 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | aah3bpf6.eng-eng-glucore.com | payload_delivery | 2026-09-17 | 100% |
| domain | fflupuez.smartwaterbox.us | payload_delivery | 2026-09-17 | 100% |
| domain | smartwaterbox.us | payload_delivery | 2026-09-17 | 100% |
| domain | suibzkdc.wece.store | payload_delivery | 2026-09-17 | 100% |
| domain | wece.store | payload_delivery | 2026-09-17 | 100% |
| domain | 3jrj8nat.americaeaglependant.com | payload_delivery | 2026-09-17 | 100% |
| domain | up3c3qqw.shop-zensulin.us | payload_delivery | 2026-09-17 | 100% |
| domain | shop-zensulin.us | payload_delivery | 2026-09-17 | 100% |
| domain | agostinobruno.com | payload_delivery | 2026-09-17 | 90% |
| domain | tudfpifq.shop-glpro.com | payload_delivery | 2026-09-17 | 100% |
| domain | shop-glpro.com | payload_delivery | 2026-09-17 | 100% |
| domain | kq36oivv.eng-cardioslim.com | payload_delivery | 2026-09-17 | 100% |
| domain | h3tnyjph.vuhw.store | payload_delivery | 2026-09-17 | 100% |
| domain | vuhw.store | payload_delivery | 2026-09-17 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - ClearFake
let malicious_domains = dynamic(["aah3bpf6.eng-eng-glucore.com", "fflupuez.smartwaterbox.us", "smartwaterbox.us", "suibzkdc.wece.store", "wece.store", "3jrj8nat.americaeaglependant.com", "up3c3qqw.shop-zensulin.us", "shop-zensulin.us", "agostinobruno.com", "tudfpifq.shop-glpro.com", "shop-glpro.com", "kq36oivv.eng-cardioslim.com", "h3tnyjph.vuhw.store", "vuhw.store"]);
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 |
Scenario: A DevOps engineer deploys a new version of a custom internal security scanner or threat intelligence aggregator that includes a specific ClearFake IOC (e.g., a known hash or URL) in its configuration file or database to test detection coverage.
C:\Program Files\InternalSecTools\) or exclude processes named sec-scanner.exe or ti-aggregator.exe when they access the IOC files.Scenario: An IT administrator runs a scheduled PowerShell script to update the endpoint protection policy, which downloads a new threat intelligence feed containing ClearFake IOCs from an internal repository server.
10.10.5.20) initiated by the powershell.exe process if the parent process is a scheduled task service (svchost.exe with Task Scheduler as the parent) or if the user is a member of the IT-Admins AD group.Scenario: A security analyst performs a manual hunt and creates a temporary folder on their workstation to store sample files or IOC lists for analysis, including the ClearFake IOCs for comparison.
C:\Users\<AnalystName>\AppData\Local\Temp\ or C:\Users\<AnalystName>\Desktop\HuntSamples\) if the user is a member of the SOC-Analysts AD group and the file extension matches common IOC list formats (.txt, .csv, .json).Scenario: A CI/CD pipeline job runs a static analysis tool that scans code repositories for known malicious patterns, including ClearFake IOCs, as