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

Hunt Hypothesis

This rule detects the presence of known Cobalt Strike indicators, which adversaries frequently deploy to establish command-and-control channels and execute post-exploitation activities. Proactively hunting for these IOCs allows the SOC to identify active or dormant implants early, reducing the dwell time of a high-severity threat before it can escalate privileges or exfiltrate data.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port47[.]97[.]199[.]23:8080botnet_cc2026-09-22100%
ip:port47[.]97[.]199[.]23:443botnet_cc2026-09-22100%
ip:port145[.]79[.]143[.]4:8080botnet_cc2026-09-22100%
ip:port123[.]57[.]146[.]34:22botnet_cc2026-09-22100%
ip:port145[.]79[.]143[.]4:22botnet_cc2026-09-22100%
ip:port145[.]79[.]143[.]4:443botnet_cc2026-09-22100%
ip:port116[.]62[.]174[.]16:82botnet_cc2026-09-22100%
ip:port1[.]12[.]59[.]176:81botnet_cc2026-09-22100%
ip:port47[.]114[.]83[.]19:81botnet_cc2026-09-22100%
ip:port145[.]79[.]143[.]4:80botnet_cc2026-09-22100%
ip:port47[.]97[.]199[.]23:80botnet_cc2026-09-22100%
ip:port111[.]230[.]37[.]219:8123botnet_cc2026-09-22100%
ip:port111[.]230[.]37[.]219:9004botnet_cc2026-09-22100%
ip:port111[.]230[.]37[.]219:80botnet_cc2026-09-22100%
ip:port111[.]230[.]37[.]219:8080botnet_cc2026-09-22100%
ip:port111[.]230[.]37[.]219:443botnet_cc2026-09-22100%
ip:port111[.]230[.]37[.]219:22botnet_cc2026-09-22100%
ip:port121[.]43[.]58[.]113:80botnet_cc2026-09-22100%
ip:port121[.]43[.]58[.]113:8080botnet_cc2026-09-22100%
ip:port121[.]43[.]58[.]113:443botnet_cc2026-09-22100%
ip:port149[.]88[.]73[.]83:8080botnet_cc2026-09-22100%
ip:port149[.]88[.]73[.]83:8000botnet_cc2026-09-22100%
ip:port149[.]88[.]73[.]83:80botnet_cc2026-09-22100%
ip:port149[.]88[.]73[.]83:443botnet_cc2026-09-22100%
ip:port149[.]88[.]73[.]83:22botnet_cc2026-09-22100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["47.114.83.19", "123.57.146.34", "111.230.37.219", "78.17.212.127", "145.79.143.4", "121.43.58.113", "47.97.199.23", "116.62.174.16", "149.88.73.83", "1.12.59.176"]);
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(["47.114.83.19", "123.57.146.34", "111.230.37.219", "78.17.212.127", "145.79.143.4", "121.43.58.113", "47.97.199.23", "116.62.174.16", "149.88.73.83", "1.12.59.176"]);
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/