This hunt detects adversary activity involving the DCRat remote access trojan by monitoring for three specific indicators of compromise known to facilitate command and control communications. Proactively hunting for these signals in Azure Sentinel is critical because early identification of DCRat infections allows the SOC team to rapidly isolate compromised endpoints before attackers can establish persistent footholds or exfiltrate sensitive data.
Malware Family: DCRat Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 98[.]156[.]49[.]133:2021 | botnet_cc | 2026-08-11 | 75% |
| ip:port | 128[.]90[.]102[.]72:8888 | botnet_cc | 2026-08-11 | 75% |
| ip:port | 104[.]251[.]181[.]111:3333 | botnet_cc | 2026-08-11 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["98.156.49.133", "104.251.181.111", "128.90.102.72"]);
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(["98.156.49.133", "104.251.181.111", "128.90.102.72"]);
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, along with recommended filters and exclusions tailored for an enterprise environment:
Scenario: Automated Backup Jobs Utilizing Shared Credentials
Process Name and User Account.
Process Name matches vssvc.exe, commvault_service.exe, or veeamagent.exe AND Account Name is a known service account (e.g., svc_backup_prod).Scenario: Endpoint Detection and Response (EDR) Scanning Artifacts
Parent Process Name and File Path.
FalconSensorService.exe, MsMpEng.exe, or CarbonBlack.exe AND the file path resides within the EDR installation directory (e.g., C:\Program Files\CrowdStrike\...).Scenario: Scheduled Software Deployment via Group Policy