This hunt hypothesis targets adversaries leveraging DCRat malware to establish persistent command-and-control channels and execute remote management tasks within the network. Proactively hunting for these specific IOCs in Azure Sentinel is critical to rapidly identify early-stage compromises before attackers can expand their foothold or exfiltrate sensitive data.
Malware Family: DCRat Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 46[.]246[.]4[.]7:2003 | botnet_cc | 2026-07-04 | 75% |
| ip:port | 207[.]174[.]1[.]243:7203 | botnet_cc | 2026-07-04 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["46.246.4.7", "207.174.1.243"]);
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.4.7", "207.174.1.243"]);
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 specific false positive scenarios and corresponding exclusions for the ThreatFox: DCRat IOCs detection rule in an enterprise environment:
Legacy Software Deployment via SCCM/MECM
C:\Windows\CCMCache) and exclude processes launched by ccmsetup.exe or smsagenthost.exe. Additionally, whitelist the specific SHA256 hash of the known legitimate installer if it matches a DCRat IOC.Automated Patch Management with WSUS
C:\Windows\SoftwareDistribution folder as a potential DCRat IOC match due to overlapping network connection patterns or file attributes.TrustedInstaller service account (NT SERVICE\TrustedInstaller) and exclude any file activity occurring within the C:\Windows\SoftwareDistribution\Download directory during scheduled maintenance hours (e.g., 02:00 – 06:00 local time).Endpoint Detection & Response (EDR) Scanning