This hunt hypothesis detects adversary activity involving the DCRat remote access trojan by identifying specific indicators of compromise such as unique file hashes and network connections within the Azure Sentinel environment. Proactively hunting for these IOCs is critical because DCRat enables attackers to maintain persistent, stealthy control over compromised endpoints, allowing them to exfiltrate sensitive data or execute lateral movement before traditional alerts trigger.
Malware Family: DCRat Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 77[.]110[.]109[.]229:8848 | botnet_cc | 2026-08-26 | 75% |
| ip:port | 46[.]246[.]6[.]27:8848 | botnet_cc | 2026-08-26 | 75% |
| ip:port | 45[.]142[.]30[.]157:7770 | botnet_cc | 2026-08-26 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["45.142.30.157", "77.110.109.229", "46.246.6.27"]);
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(["45.142.30.157", "77.110.109.229", "46.246.6.27"]);
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 4 specific false positive scenarios for the ThreatFox: DCRat IOCs detection rule, along with targeted filters and exclusions suitable for an enterprise environment:
Scenario: Legitimate Backup Agent Communication
VeeamAgent.exe or commvault_agent_service. Additionally, filter out network traffic originating from known backup server IP ranges (e.g., 10.50.20.x) communicating with the central management node.Scenario: Scheduled PowerShell Maintenance Jobs
TaskScheduler.exe (PID 4) and the command line contains specific keywords like “Maintenance” or “PatchCheck.” Alternatively, whitelist the specific hash of the internal PowerShell script used for these tasks within the detection logic.Scenario: Endpoint Detection & Response (EDR) Scans