This hunt targets adversary behavior involving the execution of DCRat remote access tools and their associated network communications to identify potential command-and-control activity within the environment. Proactively hunting for these specific IOCs in Azure Sentinel is critical because early detection of this high-severity threat allows the SOC team to isolate compromised endpoints before attackers can establish persistent lateral movement or exfiltrate sensitive data.
Malware Family: DCRat Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 144[.]172[.]88[.]128:5656 | botnet_cc | 2026-07-05 | 75% |
| ip:port | 141[.]94[.]121[.]162:8888 | botnet_cc | 2026-07-05 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["141.94.121.162", "144.172.88.128"]);
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(["141.94.121.162", "144.172.88.128"]);
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 in an enterprise environment, along with recommended filters or exclusions:
Legitimate Remote Desktop Administration via RDP Wrapper
OU=Admin-Workstations) or specific process names (rdpwrap.exe, DevRemoteManager.exe) communicating with internal IP ranges defined in the “Corporate Infrastructure” asset group, rather than external threat intelligence feeds.Automated Patch Management and Software Deployment
ccmexec.exe (SCCM) or lanagent.exe processes during defined maintenance windows (e.g., 02:00–04:00 UTC). Additionally, whitelist specific destination IP ranges associated with the organization’s internal patch management servers.Third-Party Backup and Data Synchronization Agents