This detection identifies active DCRat Remote Access Trojan infections by matching network and endpoint telemetry against known ThreatFox indicators of compromise, signaling potential unauthorized remote control capabilities within the environment. Proactive hunting for this behavior in Azure Sentinel is critical to rapidly isolate compromised hosts before adversaries leverage the RAT’s stealthy command-and-control channels to establish persistent access or exfiltrate sensitive data.
Malware Family: DCRat Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 172[.]111[.]232[.]133:7775 | botnet_cc | 2026-08-04 | 75% |
| ip:port | 104[.]223[.]98[.]68:2028 | botnet_cc | 2026-08-04 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["172.111.232.133", "104.223.98.68"]);
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(["172.111.232.133", "104.223.98.68"]);
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: DCRat IOCs detection rule, including context and suggested exclusions:
Scenario: Legitimate Remote Support Sessions via TeamViewer or AnyDesk
*.teamviewer.com, *.anydesk.com). Additionally, exclude processes with file paths containing \Program Files\TeamViewer\ or \Program Files\AnyDesk\.Scenario: Scheduled Antivirus Definition Updates
MsMpEng.exe, Cfssvc.exe, or Symantec Endpoint Protection Client from triggering this rule.Scenario: Automated Software Deployment via SCCM or Intune