This detection rule identifies active DCRat remote access trojan infections by monitoring network and endpoint telemetry against a curated set of 13 known indicators of compromise. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly detect early-stage lateral movement and command-and-control communications, enabling the SOC team to contain potential data exfiltration before adversaries establish persistent footholds.
Malware Family: DCRat Total IOCs: 13 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 195[.]20[.]115[.]53:2004 | botnet_cc | 2026-07-24 | 100% |
| ip:port | 47[.]129[.]159[.]160:8888 | botnet_cc | 2026-07-24 | 100% |
| ip:port | 12[.]187[.]175[.]73:7878 | botnet_cc | 2026-07-24 | 100% |
| ip:port | 46[.]246[.]12[.]2:2512 | botnet_cc | 2026-07-24 | 75% |
| ip:port | 158[.]94[.]211[.]191:8848 | botnet_cc | 2026-07-24 | 75% |
| ip:port | 156[.]247[.]47[.]108:12159 | botnet_cc | 2026-07-24 | 75% |
| ip:port | 156[.]247[.]47[.]108:8848 | botnet_cc | 2026-07-24 | 75% |
| ip:port | 156[.]247[.]47[.]109:12159 | botnet_cc | 2026-07-24 | 75% |
| ip:port | 156[.]247[.]47[.]109:8848 | botnet_cc | 2026-07-24 | 75% |
| ip:port | 156[.]247[.]47[.]110:12159 | botnet_cc | 2026-07-24 | 75% |
| ip:port | 156[.]247[.]47[.]110:8848 | botnet_cc | 2026-07-24 | 75% |
| ip:port | 156[.]247[.]47[.]106:12159 | botnet_cc | 2026-07-24 | 75% |
| ip:port | 156[.]247[.]47[.]106:8848 | botnet_cc | 2026-07-24 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["156.247.47.109", "47.129.159.160", "12.187.175.73", "46.246.12.2", "158.94.211.191", "156.247.47.106", "156.247.47.108", "195.20.115.53", "156.247.47.110"]);
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(["156.247.47.109", "47.129.159.160", "12.187.175.73", "46.246.12.2", "158.94.211.191", "156.247.47.106", "156.247.47.108", "195.20.115.53", "156.247.47.110"]);
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, including targeted filters and exclusions suitable for an enterprise environment:
Scenario: Legitimate Backup Operations via Veeam or Commvault
vbr.exe (Veeam), simservice.exe (Commvault), or sqlbackupagent.exe. Additionally, add an exclusion rule for network connections originating from backup service accounts (e.g., DOMAIN\BackupSvc) connecting to known internal IP ranges of the backup infrastructure.Scenario: Scheduled PowerShell Script Execution by IT Admins
C:\Windows\System32\WindowsPowerShell\v1.0).powershell.exe and the command line contains specific keywords like -ExecutionPolicy Bypass, -File, or paths ending in \Scripts\. Furthermore, exclude traffic from known internal admin subnets (e.g., 10.20.x.x) during business hours if the destination IP is a trusted public CDN or software vendor.