← Back to SOC feed Coverage →

ThreatFox: DCRat IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsDnsEvents
backdooriocthreatfoxwin-dcrat
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-06-28T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary activity involving the six specific Indicators of Compromise (IOCs) linked to the DCRat remote access trojan, which is frequently used for command and control communications. Proactively hunting for these indicators in Azure Sentinel is critical because early detection of DCRat presence allows the SOC team to isolate compromised endpoints before attackers establish persistent access or exfiltrate sensitive data.

IOC Summary

Malware Family: DCRat Total IOCs: 6 IOC Types: ip:port, domain

TypeValueThreat TypeFirst SeenConfidence
ip:port27[.]124[.]43[.]182:12159botnet_cc2026-06-28100%
domaincomienzo.ydns.eubotnet_cc2026-06-27100%
domainguaricha.ydns.eubotnet_cc2026-06-27100%
ip:port178[.]16[.]52[.]10:207botnet_cc2026-06-2775%
ip:port128[.]90[.]112[.]26:15831botnet_cc2026-06-2775%
ip:port128[.]90[.]105[.]93:15831botnet_cc2026-06-2775%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["178.16.52.10", "128.90.112.26", "128.90.105.93", "27.124.43.182"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["178.16.52.10", "128.90.112.26", "128.90.105.93", "27.124.43.182"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - DCRat
let malicious_domains = dynamic(["comienzo.ydns.eu", "guaricha.ydns.eu"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 4 specific false positive scenarios for the ThreatFox: DCRat IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:

Original source: https://threatfox.abuse.ch/browse/malware/win.dcrat/