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

Hunt Hypothesis

This rule detects the presence of known Cobalt Strike indicators of compromise, which adversaries frequently use to establish command-and-control channels and execute post-exploitation activities. Proactively hunting for these IOCs allows the SOC to identify compromised assets early, as Cobalt Strike is a prevalent tool in advanced persistent threats that can enable lateral movement and data exfiltration within the Azure environment.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port47[.]243[.]191[.]83:88botnet_cc2026-09-16100%
ip:port144[.]225[.]246[.]14:80botnet_cc2026-09-16100%
ip:port144[.]225[.]246[.]14:443botnet_cc2026-09-16100%
ip:port47[.]98[.]124[.]244:80botnet_cc2026-09-16100%
ip:port8[.]146[.]227[.]247:8082botnet_cc2026-09-16100%
ip:port156[.]239[.]224[.]131:80botnet_cc2026-09-1650%
ip:port42[.]193[.]227[.]214:1002botnet_cc2026-09-1650%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["8.146.227.247", "144.225.246.14", "156.239.224.131", "47.98.124.244", "47.243.191.83", "42.193.227.214"]);
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(["8.146.227.247", "144.225.246.14", "156.239.224.131", "47.98.124.244", "47.243.191.83", "42.193.227.214"]);
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/