← 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-09-06T11:00:01Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the presence of known AdaptixC2 command-and-control infrastructure, indicating that an adversary is likely establishing or maintaining a persistent communication channel to exfiltrate data or receive instructions. Proactively hunting for these IOCs in Azure Sentinel is critical because AdaptixC2 is a high-severity threat actor often associated with targeted intrusions, allowing the SOC to identify compromised assets before the adversary can execute further lateral movement or privilege escalation.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port91[.]92[.]241[.]187:4321botnet_cc2026-09-0675%
ip:port91[.]92[.]241[.]184:4321botnet_cc2026-09-0675%
ip:port45[.]77[.]203[.]212:50442botnet_cc2026-09-0675%
ip:port185[.]227[.]152[.]231:4321botnet_cc2026-09-0675%
ip:port109[.]123[.]245[.]205:4321botnet_cc2026-09-0675%
ip:port103[.]79[.]76[.]207:4321botnet_cc2026-09-0675%
ip:port31[.]77[.]161[.]250:80botnet_cc2026-09-06100%
ip:port31[.]77[.]161[.]250:8080botnet_cc2026-09-06100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["109.123.245.205", "91.92.241.187", "103.79.76.207", "91.92.241.184", "185.227.152.231", "31.77.161.250", "45.77.203.212"]);
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(["109.123.245.205", "91.92.241.187", "103.79.76.207", "91.92.241.184", "185.227.152.231", "31.77.161.250", "45.77.203.212"]);
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/