This hunt detects adversary activity involving known indicators of compromise from the IClickFix threat intelligence feed, which may signal active reconnaissance or initial access attempts within the environment. The SOC team should proactively search for these IOCs in Azure Sentinel to rapidly identify and contain potential threats before they escalate into broader incidents.
Malware Family: IClickFix Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 91[.]236[.]230[.]121:443 | payload_delivery | 2026-09-02 | 100% |
| ip:port | 149[.]56[.]95[.]163:443 | payload_delivery | 2026-09-02 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - IClickFix
let malicious_ips = dynamic(["91.236.230.121", "149.56.95.163"]);
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(["91.236.230.121", "149.56.95.163"]);
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 and corresponding filters for the ThreatFox: IClickFix IOCs detection rule:
Scenario: Scheduled Service Health Checks by the IClickFix Agent
IClickFixAgent.exe process (or specific service PID) connecting to known IClickFix FQDNs (e.g., *.iclickfix.com, api.iclickfix.com). Additionally, exclude traffic on standard ports 443 where the destination IP belongs to the ASN of the vendor.Scenario: Admin-Initiated “One-Click” Remediation Scripts
User field matches members of the “IT Helpdesk” or “System Admins” security groups, specifically when the event source is tagged with the IClickFix application ID. Alternatively, filter out events occurring during defined maintenance windows (e.g., 02:00–04:00 local time) where bulk remediation jobs are scheduled.Scenario: Integration with Enterprise Ticketing Systems (ServiceNow/Jira)