← Back to SOC feed Coverage →

ThreatFox: IClickFix IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsDnsEventsUrlClickEvents
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-18T11:00:00Z · Confidence: high

Hunt Hypothesis

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. The SOC team should proactively investigate these signals in Azure Sentinel to identify early-stage threats and mitigate potential risks associated with compromised third-party integrations before they escalate into significant incidents.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://mortilostart.com/5qdS7Aq.jsbotnet_cc2026-08-18100%
domainmortilostart.combotnet_cc2026-08-18100%
ip:port85[.]192[.]31[.]214:80payload_delivery2026-08-18100%
domaincostum342183.lifepayload_delivery2026-08-18100%
domainsecretpi88122.lifepayload_delivery2026-08-18100%
domainajnfqs.compayload_delivery2026-08-18100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - IClickFix
let malicious_ips = dynamic(["85.192.31.214"]);
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(["85.192.31.214"]);
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(["mortilostart.com", "costum342183.life", "secretpi88122.life", "ajnfqs.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - IClickFix
let malicious_urls = dynamic(["https://mortilostart.com/5qdS7Aq.js"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

Here are 4 specific false positive scenarios and corresponding exclusion strategies for the ThreatFox: IClickFix IOCs detection rule in an enterprise environment:

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