This hunt detects adversary behavior involving known malicious indicators from the IClickFix threat intelligence feed to identify potential compromises within the Azure Sentinel environment. The SOC team should proactively search for these IOCs because their high severity rating suggests an immediate risk of active threats that could evade standard automated detections if not explicitly investigated.
Malware Family: IClickFix Total IOCs: 3 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | iocriotao.icu | payload_delivery | 2026-08-19 | 100% |
| domain | triapfog.com | payload_delivery | 2026-08-19 | 100% |
| domain | mioiooo.icu | payload_delivery | 2026-08-19 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - IClickFix
let malicious_domains = dynamic(["iocriotao.icu", "triapfog.com", "mioiooo.icu"]);
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 exclusion strategies for the ThreatFox: IClickFix IOCs detection rule in an enterprise environment:
Scenario: Scheduled Backup Jobs on File Servers
Source Host belongs to the “File-Server” OU and the Process Name matches known backup agents (e.g., Veeam.Backup.Service.exe, rubrik-agent.exe). Additionally, restrict the rule trigger to business hours only if backups are strictly scheduled outside this window.Scenario: Automated Patch Deployment via SCCM
User Account identity. Exclude any events generated by the system account NT SERVICE\CCMService or specific service accounts like svc-patch-deploy. Alternatively, add a time-based filter to suppress alerts during the defined “Maintenance Window” (e.g., Sundays 02:00–06:00).Scenario: Third-Party RMM Tool Integration