← Back to SOC feed Coverage →

ThreatFox: PureRAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
backdooriocthreatfoxwin-pure_rat
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-10T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt hypothesis detects adversary behavior involving the deployment of PureRAT remote access trojans by monitoring for specific Indicators of Compromise (IOCs) that signal active reconnaissance or lateral movement within the network. A SOC team should proactively hunt for these IOCs in Azure Sentinel to identify early-stage infections and prevent potential data exfiltration or command-and-control communications before they escalate into broader compromises.

IOC Summary

Malware Family: PureRAT Total IOCs: 8 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port91[.]92[.]42[.]22:443botnet_cc2026-08-1075%
ip:port209[.]99[.]190[.]23:56014botnet_cc2026-08-1075%
ip:port104[.]239[.]66[.]245:443botnet_cc2026-08-1075%
ip:port154[.]29[.]72[.]36:6000botnet_cc2026-08-1075%
ip:port204[.]77[.]130[.]227:56001botnet_cc2026-08-1075%
ip:port204[.]77[.]130[.]227:56002botnet_cc2026-08-1075%
ip:port204[.]77[.]130[.]227:56003botnet_cc2026-08-1075%
ip:port91[.]219[.]238[.]82:56001botnet_cc2026-08-1099%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["104.239.66.245", "91.219.238.82", "209.99.190.23", "91.92.42.22", "154.29.72.36", "204.77.130.227"]);
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(["104.239.66.245", "91.219.238.82", "209.99.190.23", "91.92.42.22", "154.29.72.36", "204.77.130.227"]);
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 5 specific false positive scenarios for the ThreatFox: PureRAT IOCs detection rule, along with targeted filters and exclusions suitable for an enterprise environment:

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