This hunt targets adversary reconnaissance and initial access behaviors by correlating network traffic against four specific Indicators of Compromise linked to the Brute Ratel C4 threat actor. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly identify early-stage intrusions from this known group before they escalate into full-scale lateral movement or data exfiltration campaigns.
Malware Family: Brute Ratel C4 Total IOCs: 4 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 35[.]79[.]190[.]98:80 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 13[.]196[.]44[.]85:80 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 52[.]196[.]76[.]29:80 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 54[.]248[.]149[.]54:80 | botnet_cc | 2026-07-04 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Brute Ratel C4
let malicious_ips = dynamic(["35.79.190.98", "13.196.44.85", "54.248.149.54", "52.196.76.29"]);
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(["35.79.190.98", "13.196.44.85", "54.248.149.54", "52.196.76.29"]);
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 5 specific false positive scenarios for the ThreatFox: Brute Ratel C4 detection rule in an enterprise environment, along with suggested filters or exclusions:
Scheduled Vulnerability Scanning via Qualys or Tenable
Qualys_External_IP_Range and Tenable_Scanner_Subnet) during the scheduled maintenance window (e.g., 02:00–04:00 UTC).Automated Backup Replication Jobs
svc_backup_agent) or specific hostnames identified in the backup infrastructure (e.g., *.veeam-replica.local), ensuring that high-frequency connection counts from these sources do not trigger