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

Hunt Hypothesis

This hypothesis targets the presence of known Cobalt Strike indicators, which adversaries frequently leverage to establish command-and-control channels and execute post-compromise actions within the environment. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify active or dormant beaconing activity before it escalates into lateral movement or data exfiltration, thereby reducing the dwell time of sophisticated threat actors.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port45[.]86[.]64[.]228:80botnet_cc2026-09-15100%
ip:port45[.]86[.]64[.]228:3389botnet_cc2026-09-15100%
ip:port45[.]86[.]64[.]228:443botnet_cc2026-09-15100%
ip:port121[.]43[.]152[.]104:22222botnet_cc2026-09-15100%
ip:port45[.]86[.]64[.]228:22botnet_cc2026-09-15100%
ip:port121[.]43[.]152[.]104:7000botnet_cc2026-09-15100%
ip:port31[.]70[.]103[.]174:22botnet_cc2026-09-15100%
ip:port118[.]25[.]43[.]125:443botnet_cc2026-09-15100%
ip:port121[.]43[.]152[.]104:2202botnet_cc2026-09-15100%
ip:port121[.]43[.]152[.]104:443botnet_cc2026-09-15100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["118.25.43.125", "31.70.103.174", "45.86.64.228", "121.43.152.104"]);
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(["118.25.43.125", "31.70.103.174", "45.86.64.228", "121.43.152.104"]);
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/