This rule detects the presence of known Cobalt Strike indicators of compromise, signaling that an adversary may have deployed a powerful post-exploitation framework to establish command-and-control or execute lateral movement. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify and contain stealthy, high-severity intrusions before they can escalate privileges or exfiltrate sensitive data.
Malware Family: Cobalt Strike Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 39[.]100[.]66[.]238:8080 | botnet_cc | 2026-09-17 | 100% |
| ip:port | 39[.]100[.]66[.]238:4330 | botnet_cc | 2026-09-17 | 100% |
| ip:port | 124[.]221[.]4[.]84:22 | botnet_cc | 2026-09-17 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["124.221.4.84", "39.100.66.238"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["124.221.4.84", "39.100.66.238"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
svc-ci-deploy, monitoring-agent) from the IOC match, or whitelist specific hash values associated with internal build artifacts.beacon or shell commands.
Task Scheduler (taskschd.msc) or specific parent processes like svchost.exe with known service names, or filter out connections to internal storage endpoints (e.g., 10.0.x.x range) when the source is a known backup server.Zoom.exe, Teams.exe, slack.exe) and their associated child processes, or filter out connections to known SaaS CDNs (e.g., *.zoom.us, *.teams.microsoft.com).