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

Hunt Hypothesis

This detection rule identifies adversary activity involving known Cobalt Strike indicators of compromise (IOCs) that signal potential command and control or lateral movement within the network. Proactively hunting for these specific IOCs in Azure Sentinel is critical to rapidly detect and contain established post-exploitation frameworks before adversaries can establish persistent access or exfiltrate sensitive data.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port43[.]166[.]246[.]26:7010botnet_cc2026-08-01100%
ip:port43[.]166[.]246[.]26:7000botnet_cc2026-08-01100%
ip:port43[.]166[.]246[.]26:143botnet_cc2026-08-01100%
ip:port43[.]166[.]246[.]26:25botnet_cc2026-08-01100%
ip:port43[.]166[.]246[.]26:443botnet_cc2026-08-01100%
ip:port117[.]72[.]199[.]102:8080botnet_cc2026-08-01100%
ip:port117[.]72[.]199[.]102:22botnet_cc2026-08-01100%
ip:port117[.]72[.]199[.]102:443botnet_cc2026-08-01100%
ip:port159[.]75[.]159[.]217:443botnet_cc2026-08-01100%
ip:port108[.]165[.]147[.]244:4444botnet_cc2026-08-01100%
ip:port47[.]108[.]77[.]36:8080botnet_cc2026-08-01100%
ip:port151[.]244[.]243[.]42:8080botnet_cc2026-08-01100%
ip:port193[.]112[.]95[.]180:8899botnet_cc2026-08-01100%
ip:port39[.]106[.]183[.]67:443botnet_cc2026-08-01100%
ip:port83[.]229[.]123[.]185:8443botnet_cc2026-08-01100%
ip:port83[.]229[.]123[.]185:5555botnet_cc2026-08-01100%
ip:port47[.]108[.]77[.]36:81botnet_cc2026-08-01100%
ip:port159[.]75[.]159[.]217:8080botnet_cc2026-08-01100%
ip:port159[.]75[.]159[.]217:8082botnet_cc2026-08-01100%
ip:port45[.]135[.]180[.]166:443botnet_cc2026-08-0150%
ip:port154[.]36[.]167[.]17:80botnet_cc2026-08-0150%
ip:port124[.]222[.]145[.]172:9999botnet_cc2026-08-01100%
ip:port124[.]222[.]145[.]172:443botnet_cc2026-08-01100%
ip:port124[.]222[.]145[.]172:8084botnet_cc2026-08-01100%
ip:port124[.]222[.]145[.]172:8888botnet_cc2026-08-01100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["123.57.243.182", "45.135.180.166", "151.244.243.42", "193.112.95.180", "47.108.77.36", "117.72.199.102", "39.106.183.67", "124.222.145.172", "83.229.123.185", "154.36.167.17", "108.165.147.244", "43.166.246.26", "159.75.159.217"]);
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(["123.57.243.182", "45.135.180.166", "151.244.243.42", "193.112.95.180", "47.108.77.36", "117.72.199.102", "39.106.183.67", "124.222.145.172", "83.229.123.185", "154.36.167.17", "108.165.147.244", "43.166.246.26", "159.75.159.217"]);
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 exclusion strategies for the ThreatFox: Cobalt Strike IOCs detection rule:

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