This hunt detects adversary activity involving specific indicators of compromise (IOCs) linked to the IClickFix platform, which may signal unauthorized access or data exfiltration attempts. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification allows the SOC team to isolate affected assets and mitigate potential supply chain risks before they escalate into broader security incidents.
Malware Family: IClickFix Total IOCs: 3 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | zewaplus.club | botnet_cc | 2026-07-30 | 75% |
| domain | telemetryworks.pro | botnet_cc | 2026-07-30 | 75% |
| domain | burunduktracker.xyz | botnet_cc | 2026-07-30 | 75% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - IClickFix
let malicious_domains = dynamic(["zewaplus.club", "telemetryworks.pro", "burunduktracker.xyz"]);
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 the false positive scenarios and corresponding filters for the ThreatFox: IClickFix IOCs detection rule:
Scenario 1: Scheduled Maintenance and Backup Jobs
sqlagent or cron jobs) that trigger network connections to IClickFix update servers. These scheduled tasks often match the IOCs associated with software updates or telemetry.SYSTEM, NT SERVICE\IClickFixSvc) and the execution time falls within the maintenance window (e.g., 02:00–04:00 daily). Add a filter for specific scheduled task names like “IClickFix_Daily_Health_Check”.Scenario 2: Admin-Initiated Software Updates via Endpoint Management
msiexec.exe, ccmsetup.exe (SCCM), or IntuneManagementExtension.exe. Additionally, filter out alerts where the user context is DOMAIN\AdminGroup and the action type is “Software Update” or “Deployment”.Scenario 3: Legitimate Help Desk Ticketing Integration