This hunt detects adversary activity involving the DCRat remote access tool by identifying specific indicators of compromise such as malicious file hashes and network connections within the Azure Sentinel environment. Proactively hunting for these IOCs is critical to rapidly identify early-stage lateral movement or command-and-control communications, enabling the SOC team to contain potential data exfiltration before it escalates into a broader incident.
Malware Family: DCRat Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 45[.]74[.]6[.]146:8848 | botnet_cc | 2026-08-14 | 75% |
| ip:port | 128[.]90[.]108[.]184:8848 | botnet_cc | 2026-08-14 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["128.90.108.184", "45.74.6.146"]);
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.108.184", "45.74.6.146"]);
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:
Scenario: Legitimate Remote Administration via PowerShell
powershell.exe with arguments containing DCRat-associated hash values (e.g., specific DLLs used by the admin tool) or connects to a known internal IP that matches a DCRat IOC, the rule may trigger.PowerShell.exe running under a domain-admin account (e.g., DOMAIN\svc_admin) and the destination IP falls within the internal corporate subnet range (e.g., 10.x.x.x).Scenario: Scheduled Antivirus or EDR Definition Updates
C:\Program Files\CrowdStrike\FalconSensor\csfalcon.exe (or equivalent for your specific EDR) and filter out events occurring during the defined maintenance window (e.g., 02:00–04:00 local time).Scenario: Internal Software Deployment via SCCM/Intune