← Back to SOC feed Coverage →

ThreatFox: Cobalt Strike IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
cobalt-strikeiocthreatfoxwin-cobalt_strike
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-06T11:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies adversary activity involving specific Indicators of Compromise (IOCs) linked to the Cobalt Strike toolset, which is frequently utilized by threat actors for command and control operations during post-exploitation phases. Proactively hunting for these signatures in Azure Sentinel enables the SOC team to rapidly detect stealthy lateral movement or data exfiltration attempts that may evade standard signature-based defenses.

IOC Summary

Malware Family: Cobalt Strike Total IOCs: 6 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port207[.]57[.]134[.]202:3306botnet_cc2026-08-06100%
ip:port154[.]221[.]25[.]38:443botnet_cc2026-08-06100%
ip:port83[.]229[.]123[.]185:443botnet_cc2026-08-06100%
ip:port36[.]140[.]162[.]173:11443botnet_cc2026-08-06100%
ip:port78[.]17[.]93[.]55:10443botnet_cc2026-08-0650%
ip:port146[.]56[.]195[.]201:4433botnet_cc2026-08-0650%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["83.229.123.185", "146.56.195.201", "154.221.25.38", "36.140.162.173", "78.17.93.55", "207.57.134.202"]);
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(["83.229.123.185", "146.56.195.201", "154.221.25.38", "36.140.162.173", "78.17.93.55", "207.57.134.202"]);
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

Here are specific false positive scenarios and corresponding filters for the ThreatFox: Cobalt Strike IOCs detection rule in an enterprise environment:

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