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

Hunt Hypothesis

This hunt targets adversary behavior involving the deployment of Cobalt Strike beacon tools, specifically identifying six key indicators of compromise that signal active command and control infrastructure within the network. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly detect and contain sophisticated post-exploitation activities before adversaries establish persistent footholds or exfiltrate sensitive data.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port178[.]62[.]3[.]223:8443botnet_cc2026-06-2990%
ip:port151[.]239[.]25[.]40:443botnet_cc2026-06-29100%
ip:port38[.]38[.]250[.]68:443botnet_cc2026-06-29100%
ip:port27[.]133[.]154[.]218:8443botnet_cc2026-06-29100%
ip:port38[.]190[.]224[.]61:8082botnet_cc2026-06-29100%
ip:port151[.]239[.]25[.]40:9090botnet_cc2026-06-29100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["27.133.154.218", "38.38.250.68", "151.239.25.40", "38.190.224.61", "178.62.3.223"]);
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(["27.133.154.218", "38.38.250.68", "151.239.25.40", "38.190.224.61", "178.62.3.223"]);
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 in an enterprise environment, along with suggested filters or exclusions:

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