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

Hunt Hypothesis

This hunt targets the presence of known Cobalt Strike indicators of compromise, which adversaries frequently deploy to establish command-and-control channels and execute post-exploitation actions. Proactively hunting for these high-severity IOCs in Azure Sentinel allows the SOC to identify active or dormant implantations before they progress to lateral movement or data exfiltration.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port47[.]116[.]130[.]234:22botnet_cc2026-09-20100%
ip:port47[.]116[.]130[.]234:8088botnet_cc2026-09-20100%
ip:port47[.]116[.]130[.]234:8080botnet_cc2026-09-20100%
ip:port45[.]145[.]228[.]161:9999botnet_cc2026-09-20100%
ip:port47[.]116[.]130[.]234:82botnet_cc2026-09-20100%
ip:port116[.]62[.]174[.]16:81botnet_cc2026-09-20100%
ip:port130[.]94[.]66[.]86:80botnet_cc2026-09-20100%
ip:port47[.]116[.]130[.]234:80botnet_cc2026-09-20100%
ip:port47[.]116[.]130[.]234:443botnet_cc2026-09-20100%
ip:port36[.]255[.]97[.]162:80botnet_cc2026-09-20100%
ip:port36[.]255[.]97[.]162:8080botnet_cc2026-09-20100%
ip:port124[.]223[.]177[.]82:80botnet_cc2026-09-2050%
ip:port36[.]255[.]97[.]162:443botnet_cc2026-09-20100%
ip:port49[.]232[.]21[.]222:888botnet_cc2026-09-20100%
ip:port81[.]70[.]21[.]163:8080botnet_cc2026-09-20100%
ip:port81[.]70[.]21[.]163:443botnet_cc2026-09-20100%
ip:port81[.]70[.]21[.]163:8091botnet_cc2026-09-2075%
ip:port106[.]54[.]201[.]103:80botnet_cc2026-09-20100%
ip:port106[.]54[.]201[.]103:8080botnet_cc2026-09-20100%
ip:port43[.]136[.]93[.]107:80botnet_cc2026-09-20100%
ip:port106[.]54[.]201[.]103:443botnet_cc2026-09-20100%
ip:port43[.]136[.]93[.]107:443botnet_cc2026-09-20100%
ip:port49[.]232[.]21[.]222:88botnet_cc2026-09-20100%
ip:port101[.]43[.]31[.]60:123botnet_cc2026-09-19100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["81.70.21.163", "101.43.31.60", "36.255.97.162", "130.94.66.86", "106.54.201.103", "45.145.228.161", "116.62.174.16", "43.136.93.107", "124.223.177.82", "47.116.130.234", "49.232.21.222"]);
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(["81.70.21.163", "101.43.31.60", "36.255.97.162", "130.94.66.86", "106.54.201.103", "45.145.228.161", "116.62.174.16", "43.136.93.107", "124.223.177.82", "47.116.130.234", "49.232.21.222"]);
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/