The detection identifies potential DCRat malware activity through known IOCs, indicating an adversary may be establishing persistence or exfiltrating data. SOC teams should proactively hunt for this behavior in Azure Sentinel to detect and mitigate advanced persistent threats before significant data loss occurs.
IOC Summary
Malware Family: DCRat Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 190[.]255[.]90[.]152:6010 | botnet_cc | 2026-05-29 | 75% |
| ip:port | 158[.]94[.]208[.]29:207 | botnet_cc | 2026-05-29 | 75% |
| ip:port | 45[.]202[.]1[.]100:12159 | botnet_cc | 2026-05-29 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["190.255.90.152", "158.94.208.29", "45.202.1.100"]);
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(["190.255.90.152", "158.94.208.29", "45.202.1.100"]);
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 |
Scenario: Scheduled system backup using Veeam Backup & Replication
process.name != "VeeamBackup.exe" or destination_ip != "known-backup-server-ip"Scenario: Windows Update task via Group Policy
destination_ip != "13.107.6.50" (Microsoft’s public IP for Windows Update) or process.name != "wuauclt.exe"Scenario: Log collection using Splunk Forwarder
process.name != "splunkforwarder.exe" or destination_ip != "splunk-server-ip"Scenario: Database backup using SQL Server Agent Job
process.name != "sqlservr.exe" or destination_ip != "sql-server-ip"Scenario: Remote desktop session using Microsoft Remote Desktop
process.name != "mstsc.exe" or destination_ip != "rdp-server-ip"