This hunt targets adversary activity involving specific indicators of compromise linked to the IClickFix platform, which may signal unauthorized access or malicious reconnaissance within the organization’s cloud infrastructure. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification allows the SOC team to validate potential threats and mitigate risks before they escalate into broader security incidents.
Malware Family: IClickFix Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 4[.]144[.]235[.]121:80 | payload_delivery | 2026-07-21 | 75% |
| ip:port | 156[.]234[.]7[.]21:80 | payload_delivery | 2026-07-21 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - IClickFix
let malicious_ips = dynamic(["156.234.7.21", "4.144.235.121"]);
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(["156.234.7.21", "4.144.235.121"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: IClickFix IOCs detection rule, tailored for an enterprise environment using IClickFix for IT service management and asset tracking:
Scheduled Asset Inventory Synchronization
ICF-Sync-01) initiates a bulk synchronization with external hardware inventory databases. This process triggers high-volume outbound connections to known IClickFix cloud endpoints and API gateways, matching the rule’s IOCs.ICF-Sync-01) or the dedicated service account svc_icf_inventory during the scheduled maintenance window (e.g., 02:00–04:00 UTC).Mobile Field Technician App Updates
IClickFix-Mobile combined with IP ranges assigned to the corporate Wi-Fi SSID or specific MDM-managed device groups.Help Desk Agent Dashboard Refreshes