← Back to SOC feed Coverage →

ThreatFox: AdaptixC2 IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
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-07-25T11:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies the presence of AdaptixC2 command-and-control infrastructure, which adversaries leverage to stealthily exfiltrate sensitive data from compromised endpoints. SOC teams should proactively hunt for these indicators in Azure Sentinel to rapidly isolate affected systems and prevent potential data breaches before significant information is extracted.

IOC Summary

Malware Family: AdaptixC2 Total IOCs: 12 IOC Types: sha256_hash, ip:port, md5_hash, sha1_hash

TypeValueThreat TypeFirst SeenConfidence
ip:port74[.]249[.]84[.]175:4321botnet_cc2026-07-2575%
ip:port51[.]107[.]74[.]185:4321botnet_cc2026-07-2575%
ip:port27[.]124[.]20[.]5:4321botnet_cc2026-07-2575%
ip:port27[.]124[.]20[.]6:4321botnet_cc2026-07-2575%
ip:port207[.]57[.]123[.]129:43211botnet_cc2026-07-2575%
ip:port2[.]27[.]28[.]207:42153botnet_cc2026-07-2575%
ip:port2[.]27[.]29[.]171:42216botnet_cc2026-07-2575%
ip:port144[.]172[.]118[.]84:4321botnet_cc2026-07-2575%
ip:port119[.]28[.]212[.]86:44321botnet_cc2026-07-2575%
md5_hash230aa6979b84ef379373d3638c485fcapayload2026-07-2595%
sha256_hash551c8108e3691d035b2417c4f1ec3083c5213514c1c65348c5934dfcad53225bpayload2026-07-2595%
sha1_hash608ed0cadd68a22468248632b771c73a845fc812payload2026-07-2595%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AdaptixC2
let malicious_ips = dynamic(["119.28.212.86", "2.27.29.171", "2.27.28.207", "27.124.20.5", "51.107.74.185", "207.57.123.129", "74.249.84.175", "27.124.20.6", "144.172.118.84"]);
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(["119.28.212.86", "2.27.29.171", "2.27.28.207", "27.124.20.5", "51.107.74.185", "207.57.123.129", "74.249.84.175", "27.124.20.6", "144.172.118.84"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - AdaptixC2
let malicious_hashes = dynamic(["230aa6979b84ef379373d3638c485fca", "551c8108e3691d035b2417c4f1ec3083c5213514c1c65348c5934dfcad53225b", "608ed0cadd68a22468248632b771c73a845fc812"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

Here are 3-5 specific false positive scenarios for the ThreatFox: AdaptixC2 IOCs detection rule, along with suggested filters or exclusions tailored for an enterprise environment:

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