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 targeting this critical business application. Proactively hunting for these IOCs within Azure Sentinel is essential because early identification of IClickFix-related threats allows the SOC team to rapidly contain potential breaches before they escalate into significant operational disruptions.
Malware Family: IClickFix Total IOCs: 3 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | fan[.]369bbqsifangonline.com | payload_delivery | 2026-08-25 | 100% |
| url | hxxps://cdn.jsdelivr.net/gh/Patricia-38674/ret74kfd98j/nam1o0tych | payload_delivery | 2026-08-25 | 100% |
| domain | dock.yourbodybydesign.me | payload_delivery | 2026-08-25 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - IClickFix
let malicious_domains = dynamic(["fan.369bbqsifangonline.com", "dock.yourbodybydesign.me"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - IClickFix
let malicious_urls = dynamic(["https://cdn.jsdelivr.net/gh/Patricia-38674/ret74kfd98j/nam1o0tych"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are the documented false positive scenarios and corresponding filters for the ThreatFox: IClickFix IOCs detection rule:
Scenario 1: Scheduled Maintenance & Patching Jobs
Ivanti.Agent.exe or SMS_EXECUTIVE.exe running under the SYSTEM account during defined maintenance windows (e.g., 01:00–04:00 local time).Scenario 2: Helpdesk Agent Installation & Onboarding
iclickfix.com endpoints) as the agent registers its device ID and establishes secure tunnels.Ivanti.Agent installation date.Scenario 3: Automated Ticket Synchronization via PowerShell
Sync-Tickets.ps1) scheduled via Windows Task Scheduler to pull high-priority tickets from the IClickFix portal every hour. This