This hunt detects adversary behavior involving the deployment of Cobalt Strike tools by identifying three specific indicators of compromise (IOCs) that signal potential command and control or post-exploitation activities within the environment. A SOC team should proactively hunt for these signals in Azure Sentinel to rapidly identify and isolate active Cobalt Strike implants, thereby mitigating the risk of lateral movement and data exfiltration before they escalate into a full-scale breach.
Malware Family: Cobalt Strike Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 47[.]84[.]15[.]240:8080 | botnet_cc | 2026-08-15 | 100% |
| ip:port | 47[.]84[.]15[.]240:80 | botnet_cc | 2026-08-15 | 100% |
| ip:port | 47[.]84[.]15[.]240:443 | botnet_cc | 2026-08-14 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["47.84.15.240"]);
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(["47.84.15.240"]);
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 |
Scenario: Legitimate Software Deployment via SCCM/Intune
beacon executable and associated DLLs that match the rule’s IOCs.ccmsetup.exe (SCCM) or IntuneManagementExtension.exe, and restrict the detection to non-standard installation paths (e.g., exclude C:\Program Files\Microsoft Endpoint Configuration Manager).Scenario: Scheduled Internal Vulnerability Scanning
beacon.exe with specific command-line arguments) during their execution window.\Tenable\ or \Qualys\ directories.Scenario: DevOps Pipeline Execution in CI/CD Environments