← Back to SOC feed Coverage →

ThreatFox: DCRat IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
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-07-13T23:00:01Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary behavior involving the execution of DCRat remote access tools by correlating three specific indicators of compromise within Azure Sentinel logs. Proactively hunting for these signatures is critical to detect early-stage command-and-control communications and prevent potential data exfiltration before they escalate into a full-blown incident.

IOC Summary

Malware Family: DCRat Total IOCs: 3 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port176[.]53[.]159[.]46:8090botnet_cc2026-07-13100%
ip:port128[.]90[.]105[.]247:7998botnet_cc2026-07-1375%
ip:port196[.]251[.]121[.]74:2323botnet_cc2026-07-13100%

KQL: Ip Hunt

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

Required Data Sources

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

References

False Positive Guidance

Here are specific false positive scenarios for the ThreatFox: DCRat IOCs detection rule, along with suggested filters to mitigate noise in an enterprise environment:

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