This hunt targets adversaries deploying the DCRat remote access trojan to establish persistent command-and-control channels and exfiltrate sensitive data following initial phishing or drive-by compromise. Proactively hunting these specific IOCs in Azure Sentinel is critical to rapidly identify early-stage infections before attackers can leverage their full remote execution capabilities for lateral movement and data theft.
Malware Family: DCRat Total IOCs: 2 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 91[.]92[.]47[.]95:56999 | botnet_cc | 2026-07-19 | 75% |
| url | hxxp://keutbdump3.temp.swtest.ru/pipePhpjsPacketLongpoll.php | botnet_cc | 2026-07-19 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["91.92.47.95"]);
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(["91.92.47.95"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - DCRat
let malicious_urls = dynamic(["http://keutbdump3.temp.swtest.ru/pipePhpjsPacketLongpoll.php"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios for the ThreatFox: DCRat IOCs detection rule in an enterprise environment, including suggested filters or exclusions:
Endpoint Protection Management Console Traffic
Endpoint Agent service (e.g., C:\Program Files\CrowdStrike\fs.exe) to the specific IP:Port combination associated with the EDR vendor’s cloud region, provided the destination port matches standard management ports (e.g., 443, 8080).Automated Patch Management and Software Distribution
Task Scheduler might initiate an HTTPS connection to a vendor’s update server (e.g., Adobe Creative Cloud Updater or Zoom Auto-Update) which coincidentally resolves to the flagged IP.ccmexec.exe, jamfagent.exe) during standard business hours or specific maintenance windows (e.g., 02:00–04:00 UTC).