← Back to SOC feed Coverage →

ThreatFox: DCRat IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
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-08-22T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary activity involving six specific indicators of compromise (IOCs) linked to the DCRat remote access trojan, which is frequently used by threat actors for command and control operations. The SOC team should proactively search for these signatures in Azure Sentinel to identify early-stage infections that may evade standard signature-based detection, thereby preventing potential lateral movement or data exfiltration before they escalate into significant incidents.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port128[.]90[.]105[.]164:6666botnet_cc2026-08-2275%
sha256_hashde9eba832e86277fb8d51cab9bd6e48cda9d9ae2d674497bfa2cd1f2864a60b6payload2026-08-22100%
sha256_hash69595b33983894508509551bb0522d82e81b835025a78102d2dd631d0f590752payload2026-08-22100%
sha256_hash369a504f71ba3c1831dadeb22ad55e90fd4df20d315e33eb5c77d6ebbd316685payload2026-08-22100%
sha256_hashcf74b17c235f0eda9d67b3c6044c6b119c324ceb4296d37b68f22da32eb6d171payload2026-08-22100%
sha256_hash802d280de5970703467d775fd8106e63a0e70469c3a3ec6902635b65bc3079ccpayload2026-08-22100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["128.90.105.164"]);
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(["128.90.105.164"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - DCRat
let malicious_hashes = dynamic(["de9eba832e86277fb8d51cab9bd6e48cda9d9ae2d674497bfa2cd1f2864a60b6", "69595b33983894508509551bb0522d82e81b835025a78102d2dd631d0f590752", "369a504f71ba3c1831dadeb22ad55e90fd4df20d315e33eb5c77d6ebbd316685", "cf74b17c235f0eda9d67b3c6044c6b119c324ceb4296d37b68f22da32eb6d171", "802d280de5970703467d775fd8106e63a0e70469c3a3ec6902635b65bc3079cc"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

Here are 5 specific false positive scenarios for the ThreatFox: DCRat IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:

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