← Back to SOC feed Coverage →

ThreatFox: PureRAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsDnsEvents
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-20T11:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies PureRAT activity by monitoring for remote access trojan behaviors such as data exfiltration, arbitrary command execution, and persistent C2 communication via compromised domains and IP:port pairs. Proactive hunting in Azure Sentinel is critical to uncover early-stage compromises driven by phishing or exploit kits before adversaries establish deep footholds within the network.

IOC Summary

Malware Family: PureRAT Total IOCs: 35 IOC Types: ip:port, domain

TypeValueThreat TypeFirst SeenConfidence
ip:port91[.]215[.]85[.]6:56001botnet_cc2026-08-2075%
ip:port91[.]215[.]85[.]6:56002botnet_cc2026-08-2075%
ip:port91[.]215[.]85[.]6:56003botnet_cc2026-08-2075%
domain1hvnc.duckdns.orgbotnet_cc2026-08-20100%
ip:port167[.]17[.]76[.]105:56002botnet_cc2026-08-2075%
ip:port167[.]17[.]76[.]105:56003botnet_cc2026-08-2075%
ip:port167[.]17[.]76[.]105:56001botnet_cc2026-08-2075%
ip:port134[.]209[.]211[.]37:56002botnet_cc2026-08-2075%
ip:port134[.]209[.]211[.]37:56003botnet_cc2026-08-2075%
ip:port134[.]209[.]211[.]37:56001botnet_cc2026-08-2075%
domainconnxt.ttlock.mabotnet_cc2026-08-20100%
domaintrump2[.]1368.lolbotnet_cc2026-08-20100%
ip:port15[.]235[.]174[.]203:56002botnet_cc2026-08-2075%
ip:port15[.]235[.]174[.]203:56003botnet_cc2026-08-2075%
ip:port15[.]235[.]174[.]203:56001botnet_cc2026-08-2075%
ip:port15[.]235[.]176[.]216:56001botnet_cc2026-08-2075%
ip:port15[.]235[.]176[.]216:56002botnet_cc2026-08-2075%
ip:port15[.]235[.]176[.]216:56003botnet_cc2026-08-2075%
ip:port95[.]85[.]238[.]53:56002botnet_cc2026-08-2075%
ip:port95[.]85[.]238[.]53:56003botnet_cc2026-08-2075%
ip:port108[.]187[.]4[.]26:56001botnet_cc2026-08-2075%
ip:port108[.]187[.]4[.]26:56002botnet_cc2026-08-2075%
ip:port108[.]187[.]4[.]26:56003botnet_cc2026-08-2075%
ip:port130[.]250[.]191[.]154:56003botnet_cc2026-08-2075%
ip:port130[.]250[.]191[.]154:56002botnet_cc2026-08-2075%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["64.188.91.241", "130.250.191.154", "167.17.76.105", "178.17.62.198", "134.209.211.37", "167.148.201.14", "108.187.4.26", "91.215.85.6", "15.235.174.203", "15.235.176.216", "95.85.238.53"]);
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(["64.188.91.241", "130.250.191.154", "167.17.76.105", "178.17.62.198", "134.209.211.37", "167.148.201.14", "108.187.4.26", "91.215.85.6", "15.235.174.203", "15.235.176.216", "95.85.238.53"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - PureRAT
let malicious_domains = dynamic(["1hvnc.duckdns.org", "connxt.ttlock.ma", "trump2.1368.lol"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

Required Data Sources

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

References

False Positive Guidance

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

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