This hunt detects adversary behavior involving the deployment of DCRat remote access trojan indicators to establish persistent command and control channels within the network. The SOC team should proactively hunt for these IOCs in Azure Sentinel because early identification of DCRat activity allows for rapid containment before attackers can exfiltrate sensitive data or move laterally across critical assets.
Malware Family: DCRat Total IOCs: 5 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 206[.]123[.]129[.]171:7720 | botnet_cc | 2026-08-06 | 75% |
| ip:port | 186[.]169[.]88[.]130:9031 | botnet_cc | 2026-08-06 | 75% |
| ip:port | 64[.]89[.]161[.]65:4444 | botnet_cc | 2026-08-06 | 100% |
| ip:port | 104[.]243[.]47[.]67:8080 | botnet_cc | 2026-08-06 | 100% |
| ip:port | 160[.]20[.]109[.]29:8080 | botnet_cc | 2026-08-06 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["160.20.109.29", "104.243.47.67", "64.89.161.65", "206.123.129.171", "186.169.88.130"]);
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(["160.20.109.29", "104.243.47.67", "64.89.161.65", "206.123.129.171", "186.169.88.130"]);
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 Scanning via Windows Scheduled Tasks
VeeamAgent.exe or CommServe.exe. Additionally, exclude matches occurring during defined maintenance windows (e.g., 02:00–04:00 UTC) where backup jobs are active.Scenario: Endpoint DLP and Antivirus Real-Time Scanning
SymantecDlpAgent.exe or mfeesp.exe. Furthermore, exclude matches on file paths located within standard “Downloads” folders (C:\Users\<User>\Downloads\) to reduce noise from transient user downloads.Scenario: Internal DevOps Pipeline Artifact Deployment