This hunt detects adversary activity involving the four specific indicators of compromise (IOCs) linked to the DCRat remote access trojan to identify potential command-and-control communications or lateral movement within the network. A SOC team should proactively hunt for these signals in Azure Sentinel because early detection of DCRat infections is critical to preventing data exfiltration and unauthorized system control before the adversary establishes a persistent foothold.
Malware Family: DCRat Total IOCs: 4 IOC Types: domain, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 103[.]182[.]16[.]169:443 | botnet_cc | 2026-08-13 | 75% |
| ip:port | 40[.]160[.]232[.]46:4429 | botnet_cc | 2026-08-13 | 100% |
| ip:port | 186[.]224[.]3[.]167:7671 | botnet_cc | 2026-08-13 | 75% |
| domain | azswaz.duckdns.org | botnet_cc | 2026-08-13 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["186.224.3.167", "103.182.16.169", "40.160.232.46"]);
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(["186.224.3.167", "103.182.16.169", "40.160.232.46"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - DCRat
let malicious_domains = dynamic(["azswaz.duckdns.org"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios for the ThreatFox: DCRat IOCs detection rule, along with suggested filters and exclusions tailored for a legitimate enterprise environment:
Scenario: Automated Patch Deployment via SCCM/Intune
ccmsetup.exe (SCCM) or Microsoft.IntuneManagementService.exe. Additionally, exclude traffic originating from specific internal IP ranges dedicated to patch management servers if the IOC triggers are network-based.Scenario: Scheduled Backup Jobs Utilizing Third-Party Agents
C:\ProgramData\...) or executable names that coincide with the backup agent’s temporary staging folders or service executables.Veeam.Backup.Service.exe or commvault_agent.exe. Implement a time-based filter to suppress alerts for these processes during defined maintenance windows (e.g., 02:00–06:00 local time).Scenario: Endpoint Detection and Response (EDR) Self-Scans