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

Hunt Hypothesis

This hunt hypothesis targets adversary behavior involving the deployment of Cobalt Strike beacons to establish persistent command and control channels within the network. A SOC team should proactively hunt for these specific IOCs in Azure Sentinel because early detection of this widely used post-exploitation tool is critical to preventing lateral movement and data exfiltration before the attacker fully establishes a foothold.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port213[.]199[.]55[.]80:80botnet_cc2026-08-11100%
ip:port213[.]199[.]55[.]80:443botnet_cc2026-08-11100%
ip:port106[.]75[.]139[.]193:22botnet_cc2026-08-11100%
ip:port192[.]252[.]185[.]78:65530botnet_cc2026-08-11100%
ip:port106[.]75[.]139[.]193:8080botnet_cc2026-08-11100%
ip:port106[.]75[.]139[.]193:443botnet_cc2026-08-11100%
ip:port82[.]157[.]33[.]67:8000botnet_cc2026-08-11100%
ip:port139[.]162[.]38[.]41:9443botnet_cc2026-08-11100%
ip:port154[.]213[.]233[.]164:48305botnet_cc2026-08-1150%
ip:port52[.]202[.]75[.]213:8443botnet_cc2026-08-1150%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["106.75.139.193", "82.157.33.67", "52.202.75.213", "139.162.38.41", "154.213.233.164", "192.252.185.78", "213.199.55.80"]);
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(["106.75.139.193", "82.157.33.67", "52.202.75.213", "139.162.38.41", "154.213.233.164", "192.252.185.78", "213.199.55.80"]);
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 4 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/