This hunt detects adversary reconnaissance and initial access activities by identifying network traffic matching specific Indicators of Compromise (IOCs) linked to the Brute Ratel C4 threat actor. Proactively hunting for these signatures in Azure Sentinel is critical to rapidly identify early-stage intrusions, enabling the SOC team to isolate compromised assets before the attacker establishes persistence or exfiltrates sensitive data.
Malware Family: Brute Ratel C4 Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 3[.]115[.]55[.]199:80 | botnet_cc | 2026-08-01 | 75% |
| ip:port | 16[.]76[.]80[.]179:80 | botnet_cc | 2026-08-01 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Brute Ratel C4
let malicious_ips = dynamic(["16.76.80.179", "3.115.55.199"]);
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(["16.76.80.179", "3.115.55.199"]);
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 specific false positive scenarios and corresponding filters for the ThreatFox: Brute Ratel C4 IOCs detection rule:
Scenario: Automated Vulnerability Scanning by Qualys or Tenable
SourceIP IN [Qualys_Scan_Range]) and filter out connections where the process name matches the scanner agent (e.g., ProcessName = "qualyspc.exe" or "nessus_scan_service").Scenario: Scheduled Office 365 Hybrid Connectivity Checks
ProcessName IN ["Microsoft.Exchange.Transport.exe", "AzureADConnect.exe"]) and restrict the rule trigger to non-business hours or exclude specific destination ports commonly used by O365 (Ports 443, 8080) when the source is a known domain controller.**Scenario: Endpoint Protection Definition Updates via CrowdStrike