This hunt targets adversary behavior involving the deployment of DCRat remote access trojans by monitoring for specific file hashes and network indicators known to facilitate command-and-control communications. Proactive hunting in Azure Sentinel is critical because early detection of these high-severity IOCs allows the SOC team to isolate compromised endpoints before attackers can establish persistent footholds or exfiltrate sensitive data.
Malware Family: DCRat Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 196[.]251[.]121[.]120:35630 | botnet_cc | 2026-07-12 | 100% |
| ip:port | 172[.]86[.]77[.]116:5656 | botnet_cc | 2026-07-12 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["196.251.121.120", "172.86.77.116"]);
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(["196.251.121.120", "172.86.77.116"]);
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 for the ThreatFox: DCRat IOCs detection rule, tailored for an enterprise environment:
Legacy RDP Management Tool Updates
svc_desktop_mgmt) and restrict the detection scope to exclude known internal management subnets where these tools are deployed.Scheduled Antivirus Definition Synchronization
MsMpEng.exe (Defender) or CrowdStrikeService.exe, provided the destination IP matches the vendor’s known update infrastructure.Software Deployment via Configuration Management