This hunt identifies adversary activity involving known DCRat remote access trojan indicators of compromise to detect potential command-and-control communications or lateral movement within the network. 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 infected endpoints before the malware establishes persistence and exfiltrates sensitive data.
Malware Family: DCRat Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 141[.]94[.]121[.]162:6666 | botnet_cc | 2026-06-30 | 75% |
| ip:port | 128[.]90[.]112[.]249:5202 | botnet_cc | 2026-06-29 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["128.90.112.249", "141.94.121.162"]);
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(["128.90.112.249", "141.94.121.162"]);
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 to an enterprise environment using common security and management tools:
Endpoint Management Software Updates
C:\Program Files\Microsoft Configuration Manager\Updates\) and restrict the rule to only flag processes originating from outside of known administrative service accounts (e.g., exclude NT SERVICE\SCCMService).Legacy Remote Access Tool Deployment
TeamViewer_Service.exe, AnyDesk.exe) and whitelist their associated installation directories (C:\Program Files\TeamViewer\ or C:\ProgramData\AnyDesk\).Scheduled Antivirus Definition Synchronization