This hunt detects adversary activity involving four specific indicators of compromise (IOCs) linked to the DCRat remote access Trojan, which is frequently used by threat actors to establish persistent command and control channels within compromised networks. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification of DCRat deployment allows the SOC team to rapidly isolate affected endpoints before adversaries can exfiltrate sensitive data or pivot laterally across the environment.
Malware Family: DCRat Total IOCs: 4 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 202[.]95[.]9[.]108:8888 | botnet_cc | 2026-07-27 | 100% |
| ip:port | 2[.]27[.]248[.]65:7777 | botnet_cc | 2026-07-27 | 100% |
| ip:port | 137[.]220[.]155[.]44:12159 | botnet_cc | 2026-07-27 | 75% |
| ip:port | 137[.]220[.]155[.]44:8848 | botnet_cc | 2026-07-27 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["137.220.155.44", "2.27.248.65", "202.95.9.108"]);
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(["137.220.155.44", "2.27.248.65", "202.95.9.108"]);
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 5 specific false positive scenarios for the ThreatFox: DCRat IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Antivirus or EDR Full Scans
C:\Program Files\CrowdStrike\csagent.exe or MsMpEng.exe) and filter out events occurring during defined maintenance windows (e.g., 02:00–04:00 UTC) where the source IP belongs to the internal management subnet.Scenario: Automated Backup Agent Connectivity
svc-veeam, commvault-agent) and restrict the alert to only trigger if the destination IP is not within the organization’s designated backup VLAN or cloud storage CIDR ranges.Scenario: Patch Management Deployment Jobs