This hunt detects adversary behavior characterized by the execution of DCRat remote access trojan components, specifically targeting known indicators of compromise such as suspicious process launches and network connections to command-and-control infrastructure. Proactive hunting for these IOCs in Azure Sentinel is critical because DCRat’s stealthy nature allows attackers to establish persistent footholds that can evade standard signature-based defenses until significant data exfiltration occurs.
Malware Family: DCRat Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 141[.]94[.]121[.]162:7777 | botnet_cc | 2026-07-10 | 100% |
| ip:port | 141[.]94[.]121[.]162:5555 | botnet_cc | 2026-07-10 | 100% |
| ip:port | 141[.]94[.]121[.]162:4444 | botnet_cc | 2026-07-10 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["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(["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 for an enterprise environment:
Endpoint Management Agent Updates
C:\Program Files\Microsoft Configuration Manager\ (or the specific vendor path) and network destinations matching the internal IP ranges of your Software Distribution Servers (e.g., 10.x.x.x).Scheduled Antivirus Definition Refreshes
TaskScheduler.exe and the child process matches known EDR service executables (e.g., C:\Program Files\CrowdStrike\fsagent.exe). Additionally, filter out traffic occurring strictly between 02:00 and 04:00 UTC if updates are scheduled during this window.Third-Party Patch Management Execution