This hunt detects adversary activity involving the five specific indicators of compromise (IOCs) linked to the DCRat remote access trojan, which is frequently used by threat actors for persistent command and control operations. The SOC team should proactively hunt for these signals in Azure Sentinel because early identification of DCRat presence allows for immediate containment of compromised endpoints before adversaries can establish deep footholds or exfiltrate sensitive data.
Malware Family: DCRat Total IOCs: 5 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 45[.]192[.]169[.]254:8848 | botnet_cc | 2026-08-29 | 75% |
| ip:port | 38[.]60[.]252[.]124:80 | botnet_cc | 2026-08-29 | 75% |
| ip:port | 38[.]60[.]252[.]124:8848 | botnet_cc | 2026-08-29 | 75% |
| ip:port | 128[.]90[.]105[.]118:8624 | botnet_cc | 2026-08-29 | 75% |
| ip:port | 103[.]98[.]18[.]238:8660 | botnet_cc | 2026-08-29 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["128.90.105.118", "45.192.169.254", "38.60.252.124", "103.98.18.238"]);
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.105.118", "45.192.169.254", "38.60.252.124", "103.98.18.238"]);
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: Scheduled Endpoint Protection Scans
Host_Process_Image contains “MsMpEng.exe” or “csfalcon.exe”) and restrict the alert scope to non-scan hours (09:00–17:00) unless the connection duration exceeds 5 minutes.Scenario: Legitimate Cloud Backup and Sync Operations
*.veeam.com, *.office365.com) and add a condition to ignore alerts if the source process is a recognized backup agent (e.g., vrb.exe, OneDrive.exe).Scenario: Third-Party Remote Support Sessions