← 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-07-30T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary behavior involving the deployment of Cobalt Strike beacons and their associated infrastructure indicators to establish persistent command-and-control channels within the network. A SOC team should proactively hunt for these IOCs in Azure Sentinel because Cobalt Strike is a widely used post-exploitation tool that often indicates an advanced attacker has already achieved initial access and is actively mapping or moving laterally across the environment.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port43[.]129[.]250[.]96:22botnet_cc2026-07-30100%
ip:port43[.]129[.]250[.]96:80botnet_cc2026-07-30100%
ip:port43[.]129[.]250[.]96:8080botnet_cc2026-07-30100%
ip:port43[.]129[.]250[.]96:443botnet_cc2026-07-30100%
ip:port54[.]178[.]100[.]27:8080botnet_cc2026-07-30100%
ip:port54[.]178[.]100[.]27:443botnet_cc2026-07-30100%
ip:port54[.]178[.]100[.]27:80botnet_cc2026-07-30100%
ip:port107[.]172[.]199[.]28:80botnet_cc2026-07-30100%
ip:port107[.]172[.]199[.]28:8080botnet_cc2026-07-30100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["107.172.199.28", "54.178.100.27", "43.129.250.96"]);
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(["107.172.199.28", "54.178.100.27", "43.129.250.96"]);
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 rule, including suggested filters and exclusions tailored for an enterprise environment:

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