This hunt hypothesis targets adversary behavior involving the deployment of DCRat remote access tools by identifying specific indicators of compromise within network and endpoint telemetry. A SOC team should proactively hunt for these IOCs in Azure Sentinel to detect early-stage lateral movement or command-and-control communications that often precede data exfiltration or ransomware attacks.
Malware Family: DCRat Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 141[.]94[.]121[.]162:3333 | botnet_cc | 2026-08-03 | 100% |
| ip:port | 45[.]59[.]120[.]79:7001 | botnet_cc | 2026-08-03 | 75% |
| ip:port | 141[.]94[.]121[.]162:2222 | botnet_cc | 2026-08-03 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["141.94.121.162", "45.59.120.79"]);
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(["141.94.121.162", "45.59.120.79"]);
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 4 specific false positive scenarios for the ThreatFox: DCRat IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Internal Vulnerability Scanner Activity
Tenable.Nessus.Agent.exe, QualysPCAgent.exe, or Rapid7.Agent.exe AND the user context is a local system account (e.g., NT AUTHORITY\SYSTEM) or a dedicated service account (e.g., svc-vuln-scan).Scenario: Scheduled Endpoint Protection Updates
C:\Program Files\CrowdStrike\FalconSensor.exe or C:\Windows\System32\DefenderService.exe.Scenario: Admin Deployment via Configuration Management Tools