This hunt detects adversary activity involving the DCRat remote access trojan by identifying specific indicators of compromise such as malicious network connections and file artifacts. Proactively hunting for these signals in Azure Sentinel is critical to rapidly identify early-stage lateral movement or command-and-control communications before they escalate into a full-scale data breach.
Malware Family: DCRat Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 78[.]17[.]213[.]180:1907 | botnet_cc | 2026-08-14 | 75% |
| ip:port | 64[.]89[.]161[.]196:4444 | botnet_cc | 2026-08-14 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["64.89.161.196", "78.17.213.180"]);
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(["64.89.161.196", "78.17.213.180"]);
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 in an enterprise environment:
Legitimate Endpoint Management Scans
C:\Program Files\CrowdStrike\FalconSensor\csfalcon.exe or C:\ProgramData\Microsoft\Windows Defender\platform\mpcmdrun.exe) and filter out network connections originating from the specific IP ranges of internal update servers.Scheduled Backup and Data Archiving Jobs
VeeamBackup or CommvaultAgent, and filter out file creation events where the parent process is a known backup service (e.g., vbrsvc.exe) running during defined maintenance windows (e.g., 02:00–04:00 local time).Software Deployment via Configuration Management Tools