← 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-09-23T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt identifies hosts exhibiting network or file activity that matches known indicators of compromise associated with the Cobalt Strike framework, a prevalent post-exploitation tool used by adversaries for command and control. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to detect stealthy lateral movement or persistence mechanisms before they escalate into full-blown breaches, leveraging high-severity intelligence to reduce mean time to detection.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port81[.]70[.]21[.]163:18080botnet_cc2026-09-23100%
ip:port3[.]70[.]2[.]18:8080botnet_cc2026-09-23100%
ip:port23[.]94[.]66[.]124:80botnet_cc2026-09-23100%
ip:port3[.]70[.]2[.]18:80botnet_cc2026-09-23100%
ip:port3[.]70[.]2[.]18:443botnet_cc2026-09-23100%
ip:port23[.]94[.]66[.]124:22botnet_cc2026-09-23100%
ip:port23[.]94[.]66[.]124:443botnet_cc2026-09-23100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["23.94.66.124", "3.70.2.18", "81.70.21.163"]);
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(["23.94.66.124", "3.70.2.18", "81.70.21.163"]);
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.cobalt_strike/