This hunt detects adversary activity involving known indicators of compromise (IOCs) from the ThreatFox intelligence feed specifically linked to the IClickFix platform, which may signal unauthorized access or malicious reconnaissance within the organization’s ecosystem. SOC teams should proactively hunt for these signals in Azure Sentinel because early identification of these high-severity IOCs allows for rapid containment of potential threats before they escalate into broader data breaches or service disruptions.
Malware Family: IClickFix Total IOCs: 2 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | royalensemble.com | payload_delivery | 2026-08-27 | 100% |
| ip:port | 85[.]239[.]149[.]16:443 | payload_delivery | 2026-08-27 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - IClickFix
let malicious_ips = dynamic(["85.239.149.16"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["85.239.149.16"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - IClickFix
let malicious_domains = dynamic(["royalensemble.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios and corresponding filters for the ThreatFox: IClickFix IOCs detection rule:
Scheduled Helpdesk Ticket Sync Job
SyncHelpDeskData.ps1) on the SVC-ITSM server to synchronize ticket metadata with the IClickFix platform. This job establishes outbound HTTPS connections to known IClickFix API endpoints, triggering the IOC match.svc-itmsync running on host SVC-ITSM, provided the destination IP is within the approved IClickFix CIDR range and the process path matches C:\Scripts\SyncHelpDeskData.ps1.Endpoint Security Agent Integration
DefenderService.exe or FalconSensor.exe) periodically queries the IClickFix API, generating network logs that match the rule’s IOCs.C:\Program Files\Microsoft Defender\MsMpEng.exe) and restrict it to allow connections only from the “Endpoint Management” security group to IClickFix FQDNs.ITSM Admin Dashboard Refresh
WS-ADMIN-01 through WS-ADMIN-50). The browser’s background processes frequently fetch assets and configuration data from IClickFix servers, triggering the detection.