← Back to SOC feed Coverage →

ThreatFox: DCRat IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsUrlClickEvents
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-28T23:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies active DCRat malware infections by matching network and endpoint telemetry against seven specific Indicators of Compromise (IOCs) known to facilitate remote access trojan capabilities. Proactively hunting for these IOCs within Azure Sentinel is critical because DCRat’s ability to establish persistent command-and-control channels allows adversaries to exfiltrate sensitive data before traditional signature-based defenses can react.

IOC Summary

Malware Family: DCRat Total IOCs: 7 IOC Types: sha256_hash, url, md5_hash, ip:port, sha1_hash

TypeValueThreat TypeFirst SeenConfidence
ip:port91[.]92[.]241[.]38:8848botnet_cc2026-08-2875%
ip:port102[.]220[.]160[.]231:80botnet_cc2026-08-2875%
ip:port102[.]220[.]160[.]231:8848botnet_cc2026-08-2875%
urlhxxp://cx288605.tw1.ru/L1nc0In.phpbotnet_cc2026-08-28100%
sha1_hash92937973d50ddd6bff639bf35feb25b119f56eddpayload2026-08-2895%
md5_hash9fce0558dd8b2061c7a8baf0877d5384payload2026-08-2895%
sha256_hash9b0e3f974dac0023599bb604b5b30e3e763c2d1d28ecff80d307ca73dc06243fpayload2026-08-2895%

KQL: Ip Hunt

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

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - DCRat
let malicious_urls = dynamic(["http://cx288605.tw1.ru/L1nc0In.php"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - DCRat
let malicious_hashes = dynamic(["92937973d50ddd6bff639bf35feb25b119f56edd", "9fce0558dd8b2061c7a8baf0877d5384", "9b0e3f974dac0023599bb604b5b30e3e763c2d1d28ecff80d307ca73dc06243f"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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

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