This hunt targets the IClickFix social engineering technique, where adversaries exploit browser clickjacking to execute malicious payloads without user awareness. Proactively hunting for these IOCs in Azure Sentinel is critical to identify compromised endpoints early, as this method often bypasses traditional perimeter defenses and leads to rapid initial access.
Malware Family: IClickFix Total IOCs: 4 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | trackerredirect.online | payload_delivery | 2026-09-22 | 100% |
| domain | campaigntracker.icu | payload_delivery | 2026-09-22 | 100% |
| domain | campaigntracker.run | payload_delivery | 2026-09-22 | 100% |
| domain | campaigntracker.top | payload_delivery | 2026-09-22 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - IClickFix
let malicious_domains = dynamic(["trackerredirect.online", "campaigntracker.icu", "campaigntracker.run", "campaigntracker.top"]);
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 |
Browser Extension Auto-Update via Service Control Manager (SCM)
sc command or PowerShell New-Service to install or update proprietary browser helper services or security agents (e.g., CrowdStrike Falcon, Zscaler Client Connector) that register as Windows services. If the IOC set includes specific service names or binary paths associated with common enterprise agents, this legitimate provisioning task will trigger the alert.CcmExec.exe, IntuneManagementExtension.exe, PDQDeploy.exe) or where the service name matches a whitelist of enterprise-standard agent services (e.g., FalconService, ZscalerService).Scheduled Task Creation for Log Rotation or Cleanup
schtasks.exe or PowerShell Register-ScheduledTask to perform routine maintenance, such as rotating application logs, clearing temp directories, or running database backups. If the IOC set includes specific task names, triggers, or action commands that resemble IClickFix persistence mechanisms (e.g., tasks running at logon or with specific XML structures), these standard admin jobs will be flagged.DOMAIN\svc-maintenance) or where the task path is located in standard enterprise maintenance folders (e.g., \Microsoft\Windows\... or custom \Corp\Maintenance\...) rather than generic user profiles.Legitimate Use of rundll32.exe for UI Helper Functions