This hunt detects adversary behavior involving the deployment of Cobalt Strike beacons by identifying three specific Indicators of Compromise (IOCs) known to facilitate command and control communications. A SOC team should proactively search for these signatures in Azure Sentinel because early identification of this widely used post-exploitation tool allows for rapid containment before attackers establish persistent footholds within the network.
Malware Family: Cobalt Strike Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 198[.]46[.]175[.]153:9090 | botnet_cc | 2026-07-17 | 100% |
| ip:port | 8[.]141[.]121[.]30:9999 | botnet_cc | 2026-07-17 | 100% |
| ip:port | 103[.]43[.]18[.]230:80 | botnet_cc | 2026-07-17 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Cobalt Strike
let malicious_ips = dynamic(["103.43.18.230", "8.141.121.30", "198.46.175.153"]);
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(["103.43.18.230", "8.141.121.30", "198.46.175.153"]);
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 |
Here are 4 specific false positive scenarios for the ThreatFox: Cobalt Strike IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Management Agent Updates
svc-crowdstrike, SentinelOne-Service) and restrict alerts to non-standard ports if the EDR traffic is expected on standard HTTPS (443) or a dedicated management port.IT Asset Inventory Scans via Lansweeper or SCCM
10.x.x.x range) and exclude hostnames containing keywords like _SCCM, _Lansweeper, or _InventoryAgent.Automated Patch Management Execution
SYSTEM or