This hunt targets adversary behavior involving the execution of DCRat remote access tools by correlating three specific indicators of compromise within Azure Sentinel logs. Proactively hunting for these signatures is critical to detect early-stage command-and-control communications and prevent potential data exfiltration before they escalate into a full-blown incident.
Malware Family: DCRat Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 176[.]53[.]159[.]46:8090 | botnet_cc | 2026-07-13 | 100% |
| ip:port | 128[.]90[.]105[.]247:7998 | botnet_cc | 2026-07-13 | 75% |
| ip:port | 196[.]251[.]121[.]74:2323 | botnet_cc | 2026-07-13 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["128.90.105.247", "196.251.121.74", "176.53.159.46"]);
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.247", "196.251.121.74", "176.53.159.46"]);
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 for the ThreatFox: DCRat IOCs detection rule, along with suggested filters to mitigate noise in an enterprise environment:
Legitimate Remote Administration via RDP or VNC Tools
mstsc.exe, teamviewer_service.exe, AnyDeskService.exe) and the destination IP belongs to the organization’s approved management subnet or the vendor’s official update servers (verified via WHOIS lookup).Scheduled Software Deployment and Patch Management Jobs
NT AUTHORITY\SYSTEM, svc-sccm-agent) communicating with the internal software distribution point IPs.Third-Party Security Agent Communication