This hunt targets adversary behavior involving the execution of DCRat remote access trojan components, specifically monitoring for known indicators of compromise such as malicious process creation and network beaconing. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly identify early-stage lateral movement and data exfiltration attempts before they escalate into full-scale breaches.
Malware Family: DCRat Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 82[.]47[.]101[.]76:8080 | botnet_cc | 2026-07-15 | 75% |
| ip:port | 104[.]225[.]104[.]237:2030 | botnet_cc | 2026-07-15 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["82.47.101.76", "104.225.104.237"]);
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(["82.47.101.76", "104.225.104.237"]);
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, tailored for a legitimate enterprise environment:
Enterprise Configuration Management Deployments
Invoke-Command modules) used by these tools.Scheduled Remote Monitoring and Health Checks
svc_monitor, datadog-agent) and restrict the rule alerting window to exclude known maintenance windows where bulk inventory scans occur.Third-Party Remote Support Sessions