This hypothesis targets the presence of known DCRat indicators of compromise, which are frequently used by adversaries to establish persistent footholds and execute malicious payloads within enterprise environments. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify and isolate compromised assets before the ransomware-as-a-service tool can propagate laterally or encrypt critical data.
Malware Family: DCRat Total IOCs: 5 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 82[.]23[.]246[.]148:12159 | botnet_cc | 2026-09-05 | 75% |
| ip:port | 156[.]238[.]120[.]12:12159 | botnet_cc | 2026-09-05 | 75% |
| ip:port | 102[.]220[.]160[.]117:80 | botnet_cc | 2026-09-05 | 75% |
| ip:port | 82[.]23[.]246[.]148:8848 | botnet_cc | 2026-09-04 | 75% |
| ip:port | 156[.]238[.]120[.]12:8848 | botnet_cc | 2026-09-04 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["156.238.120.12", "102.220.160.117", "82.23.246.148"]);
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(["156.238.120.12", "102.220.160.117", "82.23.246.148"]);
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 |
C:\Apps\InventorySync\ AND the parent process is svchost.exe or a specific service executable (e.g., InvSyncSvc.exe).VeeamBackup.exe or CommAgent.exe AND the event type is “Process Loaded” or “Module Loaded”.Environment=Dev or Containerized=True, or specifically exclude processes running under dockerd.exe or containerd-shim.TrustedInstaller service operation.
TrustedInstaller.exe AND the event occurs within a 5-minute window following a “Windows Update” or “Patch Management” task completion.