This hunt detects adversary activity involving the DCRat remote access tool by monitoring for specific indicators of compromise such as unique file hashes and network connections. A SOC team should proactively search for these signals in Azure Sentinel to identify early-stage lateral movement or command-and-control communications that may indicate a stealthy post-exploitation presence.
Malware Family: DCRat Total IOCs: 3 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://dsfdsfs.xsph.ru/L1nc0In.php | botnet_cc | 2026-08-19 | 100% |
| url | hxxp://ce557109.tw1.ru/L1nc0In.php | botnet_cc | 2026-08-19 | 100% |
| ip:port | 91[.]202[.]233[.]120:8848 | botnet_cc | 2026-08-19 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["91.202.233.120"]);
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.202.233.120"]);
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://dsfdsfs.xsph.ru/L1nc0In.php", "http://ce557109.tw1.ru/L1nc0In.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, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Endpoint Protection Scans
FalconSensor.exe, MsMpEng.exe) AND the destination IP belongs to the vendor’s trusted CIDR block (e.g., 13.0.0.0/8 for Microsoft or 64.205.0.0/16 for CrowdStrike).Scenario: Scheduled Backup and Replication Jobs
DOMAIN\BackupSvc) where the destination port is standard storage ports (9443, 8080) and the traffic volume exceeds a threshold typical of malware beacons but aligns with backup job windows.Scenario: Software Deployment via Configuration Management