← 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-24T23:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies active DCRat remote access trojan infections by monitoring network and endpoint telemetry against a curated set of 13 known indicators of compromise. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly detect early-stage lateral movement and command-and-control communications, enabling the SOC team to contain potential data exfiltration before adversaries establish persistent footholds.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port195[.]20[.]115[.]53:2004botnet_cc2026-07-24100%
ip:port47[.]129[.]159[.]160:8888botnet_cc2026-07-24100%
ip:port12[.]187[.]175[.]73:7878botnet_cc2026-07-24100%
ip:port46[.]246[.]12[.]2:2512botnet_cc2026-07-2475%
ip:port158[.]94[.]211[.]191:8848botnet_cc2026-07-2475%
ip:port156[.]247[.]47[.]108:12159botnet_cc2026-07-2475%
ip:port156[.]247[.]47[.]108:8848botnet_cc2026-07-2475%
ip:port156[.]247[.]47[.]109:12159botnet_cc2026-07-2475%
ip:port156[.]247[.]47[.]109:8848botnet_cc2026-07-2475%
ip:port156[.]247[.]47[.]110:12159botnet_cc2026-07-2475%
ip:port156[.]247[.]47[.]110:8848botnet_cc2026-07-2475%
ip:port156[.]247[.]47[.]106:12159botnet_cc2026-07-2475%
ip:port156[.]247[.]47[.]106:8848botnet_cc2026-07-2475%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - DCRat
let malicious_ips = dynamic(["156.247.47.109", "47.129.159.160", "12.187.175.73", "46.246.12.2", "158.94.211.191", "156.247.47.106", "156.247.47.108", "195.20.115.53", "156.247.47.110"]);
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(["156.247.47.109", "47.129.159.160", "12.187.175.73", "46.246.12.2", "158.94.211.191", "156.247.47.106", "156.247.47.108", "195.20.115.53", "156.247.47.110"]);
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 4 specific false positive scenarios for the ThreatFox: DCRat IOCs detection rule, including targeted filters and exclusions suitable for an enterprise environment:

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