This hunt detects adversary activity involving known DCRat remote access trojan indicators, specifically targeting malicious network connections and file artifacts linked to this threat family. Proactively hunting for these IOCs in Azure Sentinel is critical to identify early-stage lateral movement or command-and-control communications that could lead to data exfiltration before the malware fully establishes persistence on compromised endpoints.
Malware Family: DCRat Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 46[.]246[.]6[.]7:2222 | botnet_cc | 2026-07-28 | 75% |
| ip:port | 158[.]94[.]210[.]161:2222 | botnet_cc | 2026-07-28 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["46.246.6.7", "158.94.210.161"]);
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(["46.246.6.7", "158.94.210.161"]);
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 3-5 specific false positive scenarios for the ThreatFox: DCRat IOCs detection rule, along with suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Antivirus or EDR Full Scan Execution
FalconSensor.exe, MsMpEng.exe, or Symantec Antivirus and the parent process is the OS scheduler (svchost.exe running under the System account). Additionally, filter out traffic originating from internal IP ranges designated for Security Management Servers.Scenario: Automated Patch Deployment via Configuration Management Tools
02:00 - 06:00 on Tuesdays and Thursids) for alerts triggered by processes named ccmexec.exe or ansible-runner. Alternatively, add the specific IP addresses of your internal SCCM Distribution Points to an allow-list within the detection