This hunt targets the presence of DCRat malware indicators, a high-severity threat known for establishing persistent command-and-control channels through domain fronting and DNS tunneling. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify compromised endpoints early, preventing the malware from exfiltrating sensitive data or executing further lateral movement within the environment.
Malware Family: DCRat Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 46[.]246[.]4[.]10:8848 | botnet_cc | 2026-09-12 | 75% |
| ip:port | 194[.]110[.]172[.]193:7777 | botnet_cc | 2026-09-12 | 75% |
| ip:port | 128[.]90[.]105[.]161:7777 | botnet_cc | 2026-09-12 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["128.90.105.161", "194.110.172.193", "46.246.4.10"]);
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.161", "194.110.172.193", "46.246.4.10"]);
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 |
Microsoft, CrowdStrike, Carbon Black) and the file location resides in standard installation directories like C:\Program Files\ or C:\ProgramData\.%TEMP% or C:\Windows\Temp) before it is moved or deleted.
Temp, Temporary, or Logs and the parent process is a standard system utility like PowerShell.exe, cmd.exe, or a known internal service account running under a scheduled task.update.exe or helper.dll.
Dev, CI, Build, or Test in their group membership, or where the file path includes Build, Artifacts, Workspace, or Project directories.