← Back to SOC feed Coverage →

ThreatFox: IClickFix IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsDnsEvents
iocjs-iclickfixthreatfox
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-08-31T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary activity by identifying network connections and file artifacts matching the specific Indicators of Compromise (IOCs) linked to the IClickFix threat actor within Azure Sentinel. Proactively hunting for these signatures allows the SOC team to rapidly identify potential compromises from this high-severity campaign before they escalate into broader incidents, ensuring timely containment of known malicious behaviors.

IOC Summary

Malware Family: IClickFix Total IOCs: 17 IOC Types: ip:port, domain

TypeValueThreat TypeFirst SeenConfidence
domainecuador.embajada.gob.vepayload_delivery2026-08-31100%
domainedpartnerspk.compayload_delivery2026-08-31100%
domainelectroste99.lifebotnet_cc2026-08-31100%
domainecortiella.compayload_delivery2026-08-31100%
domaindynalarme.frpayload_delivery2026-08-31100%
domaincliff-bell.compayload_delivery2026-08-31100%
domainchrgasa.orgpayload_delivery2026-08-31100%
domainbloguc.compayload_delivery2026-08-31100%
domainautoescolalp.com.brpayload_delivery2026-08-31100%
domainshaltaypi.lifebotnet_cc2026-08-31100%
domainapartsearcher.compayload_delivery2026-08-31100%
domainagricropmarket.compayload_delivery2026-08-31100%
domain3dtailorplugin.compayload_delivery2026-08-31100%
domainvitamindpi55.digitalbotnet_cc2026-08-31100%
ip:port93[.]152[.]223[.]161:443payload_delivery2026-08-31100%
domainfinnancialpl.compayload_delivery2026-08-31100%
domaininteractivsbroker.compayload_delivery2026-08-31100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - IClickFix
let malicious_ips = dynamic(["93.152.223.161"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["93.152.223.161"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - IClickFix
let malicious_domains = dynamic(["ecuador.embajada.gob.ve", "edpartnerspk.com", "electroste99.life", "ecortiella.com", "dynalarme.fr", "cliff-bell.com", "chrgasa.org", "bloguc.com", "autoescolalp.com.br", "shaltaypi.life", "apartsearcher.com", "agricropmarket.com", "3dtailorplugin.com", "vitamindpi55.digital", "finnancialpl.com", "interactivsbroker.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 4 specific false positive scenarios for the ThreatFox: IClickFix IOCs detection rule, along with targeted filters and exclusions suitable for an enterprise environment:

Original source: https://threatfox.abuse.ch/browse/malware/js.iclickfix/