This hunt detects adversary activity involving the four known indicators of compromise (IOCs) associated with the DCRat remote access trojan to identify potential command-and-control communications or lateral movement within the network. Proactively hunting for these IOCs in Azure Sentinel is critical because early detection of DCRat allows the SOC team to rapidly isolate compromised endpoints and prevent data exfiltration before the adversary establishes a persistent foothold.
Malware Family: DCRat Total IOCs: 4 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 192[.]253[.]245[.]178:2026 | botnet_cc | 2026-07-29 | 75% |
| ip:port | 69[.]167[.]7[.]72:443 | botnet_cc | 2026-07-29 | 100% |
| ip:port | 94[.]26[.]83[.]46:7777 | botnet_cc | 2026-07-29 | 100% |
| ip:port | 103[.]85[.]225[.]138:7777 | botnet_cc | 2026-07-29 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["69.167.7.72", "192.253.245.178", "94.26.83.46", "103.85.225.138"]);
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(["69.167.7.72", "192.253.245.178", "94.26.83.46", "103.85.225.138"]);
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: DCRat IOCs detection rule:
Scenario 1: Automated Software Deployment via SCCM/Intune
ccmsetup.exe (SCCM) or Microsoft.IntuneManagementAgent.exe, and the destination IP belongs to the organization’s internal update server range or trusted CDN ranges (e.g., Microsoft Update domains).Scenario 2: Scheduled Antivirus Definition Updates
falcon.sys, Symantec, or SentinelOne, provided the destination port is standard HTTPS (443) and the traffic volume aligns with typical definition update sizes.Scenario 3: Admin-Driven Cloud Backup Operations