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

Hunt Hypothesis

This detection rule identifies adversary activity involving known Cobalt Strike indicators of compromise (IOCs), which are frequently utilized by threat actors to establish command and control channels during post-exploitation phases. The SOC team should proactively hunt for these signatures in Azure Sentinel because early identification of Cobalt Strike beacons allows for rapid containment of lateral movement attempts before adversaries can fully entrench themselves within the network.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port68[.]64[.]182[.]169:8010botnet_cc2026-08-13100%
ip:port68[.]64[.]182[.]169:5727botnet_cc2026-08-13100%
ip:port68[.]64[.]182[.]169:111botnet_cc2026-08-13100%
ip:port68[.]64[.]182[.]169:443botnet_cc2026-08-13100%
ip:port68[.]64[.]182[.]169:8080botnet_cc2026-08-13100%
ip:port159[.]75[.]123[.]199:21botnet_cc2026-08-13100%
ip:port68[.]64[.]183[.]127:8090botnet_cc2026-08-13100%
ip:port68[.]64[.]183[.]127:5555botnet_cc2026-08-13100%
ip:port139[.]196[.]217[.]227:80botnet_cc2026-08-13100%
ip:port159[.]75[.]123[.]199:5003botnet_cc2026-08-13100%
ip:port156[.]239[.]47[.]245:80botnet_cc2026-08-13100%
ip:port156[.]239[.]47[.]245:8080botnet_cc2026-08-13100%
ip:port143[.]92[.]60[.]219:6666botnet_cc2026-08-1350%
ip:port68[.]64[.]182[.]169:80botnet_cc2026-08-1350%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["159.75.123.199", "139.196.217.227", "68.64.182.169", "143.92.60.219", "156.239.47.245", "68.64.183.127"]);
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(["159.75.123.199", "139.196.217.227", "68.64.182.169", "143.92.60.219", "156.239.47.245", "68.64.183.127"]);
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 5 specific false positive scenarios for the ThreatFox: Cobalt Strike IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:

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