← Back to SOC feed Coverage →

ThreatFox: AdaptixC2 IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
aptiocthreatfoxwin-adaptix_c2
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-05-11T11:00:00Z · Confidence: high

Hunt Hypothesis

Adversaries using AdaptixC2 are likely establishing command and control communication through suspicious network connections and file executions. SOC teams should proactively hunt for these IOCs in Azure Sentinel to identify and mitigate potential compromise from advanced persistent threats.

IOC Summary

Malware Family: AdaptixC2 Total IOCs: 3 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port194[.]163[.]175[.]135:8679botnet_cc2026-05-1175%
ip:port185[.]242[.]245[.]27:44875botnet_cc2026-05-1175%
ip:port172[.]239[.]57[.]52:1234botnet_cc2026-05-1175%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["185.242.245.27", "172.239.57.52", "194.163.175.135"]);
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(["185.242.245.27", "172.239.57.52", "194.163.175.135"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/win.adaptix_c2/