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

Hunt Hypothesis

This hunt targets adversary behavior involving the deployment of Cobalt Strike beacons by correlating network and process telemetry against a curated set of 15 known indicators of compromise. Proactively hunting for these signatures in Azure Sentinel is critical to rapidly identify active command-and-control communications or lateral movement attempts before they escalate into full-scale breaches.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port39[.]106[.]113[.]249:81botnet_cc2026-07-09100%
ip:port39[.]106[.]113[.]249:443botnet_cc2026-07-09100%
ip:port39[.]106[.]113[.]249:8080botnet_cc2026-07-09100%
ip:port152[.]32[.]202[.]240:80botnet_cc2026-07-09100%
ip:port152[.]32[.]202[.]240:8080botnet_cc2026-07-09100%
ip:port152[.]32[.]132[.]177:8080botnet_cc2026-07-09100%
ip:port152[.]32[.]132[.]177:80botnet_cc2026-07-09100%
ip:port151[.]239[.]25[.]40:80botnet_cc2026-07-09100%
ip:port151[.]239[.]25[.]40:8080botnet_cc2026-07-09100%
ip:port8[.]219[.]76[.]168:8080botnet_cc2026-07-09100%
ip:port139[.]199[.]89[.]128:80botnet_cc2026-07-09100%
ip:port39[.]105[.]201[.]165:8443botnet_cc2026-07-09100%
ip:port107[.]173[.]42[.]123:8080botnet_cc2026-07-09100%
ip:port107[.]173[.]42[.]123:80botnet_cc2026-07-09100%
ip:port47[.]121[.]137[.]8:8080botnet_cc2026-07-09100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["8.219.76.168", "39.105.201.165", "107.173.42.123", "152.32.202.240", "151.239.25.40", "39.106.113.249", "139.199.89.128", "47.121.137.8", "152.32.132.177"]);
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.219.76.168", "39.105.201.165", "107.173.42.123", "152.32.202.240", "151.239.25.40", "39.106.113.249", "139.199.89.128", "47.121.137.8", "152.32.132.177"]);
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 specific false positive scenarios for the ThreatFox: Cobalt Strike IOCs detection rule in an enterprise environment, along with recommended filters and exclusions:

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