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

Hunt Hypothesis

This hunt detects adversary activity involving the PureRAT remote access trojan by identifying matches against a curated set of 45 Indicators of Compromise (IOCs). Proactive hunting for these specific IOCs within Azure Sentinel is critical to uncover early-stage infections and prevent potential lateral movement or data exfiltration before they escalate into significant incidents.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
domaindraxwas.thruhere.netbotnet_cc2026-07-28100%
domainge.ghostnod.h4ck.mebotnet_cc2026-07-28100%
domainrichiescreen.combotnet_cc2026-07-28100%
ip:port45[.]192[.]211[.]7:56001botnet_cc2026-07-28100%
ip:port45[.]192[.]211[.]7:56003botnet_cc2026-07-28100%
ip:port80[.]76[.]49[.]3:56003botnet_cc2026-07-28100%
ip:port45[.]119[.]98[.]138:56001botnet_cc2026-07-28100%
ip:port45[.]119[.]98[.]138:56002botnet_cc2026-07-28100%
ip:port45[.]119[.]98[.]138:56003botnet_cc2026-07-28100%
ip:port45[.]119[.]98[.]140:56001botnet_cc2026-07-28100%
ip:port45[.]119[.]98[.]140:56002botnet_cc2026-07-28100%
ip:port45[.]119[.]98[.]140:56003botnet_cc2026-07-28100%
ip:port45[.]192[.]211[.]19:56001botnet_cc2026-07-28100%
ip:port45[.]192[.]211[.]19:56002botnet_cc2026-07-28100%
ip:port45[.]192[.]211[.]19:56003botnet_cc2026-07-28100%
ip:port45[.]192[.]211[.]63:56002botnet_cc2026-07-28100%
ip:port45[.]192[.]211[.]77:56002botnet_cc2026-07-28100%
ip:port151[.]242[.]63[.]153:56002botnet_cc2026-07-28100%
ip:port193[.]233[.]198[.]62:56002botnet_cc2026-07-28100%
ip:port193[.]26[.]115[.]104:56001botnet_cc2026-07-28100%
ip:port193[.]26[.]115[.]104:56002botnet_cc2026-07-28100%
ip:port193[.]26[.]115[.]104:56003botnet_cc2026-07-28100%
ip:port193[.]26[.]115[.]80:56001botnet_cc2026-07-28100%
ip:port193[.]26[.]115[.]80:56002botnet_cc2026-07-28100%
ip:port193[.]26[.]115[.]80:56003botnet_cc2026-07-28100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["45.192.211.7", "108.187.4.145", "151.242.63.149", "45.192.211.77", "193.26.115.80", "216.107.139.88", "108.187.4.116", "112.121.176.5", "104.164.46.39", "193.26.115.104", "112.121.176.4", "45.119.98.111", "112.121.176.6", "45.192.211.19", "80.76.49.3", "151.242.63.153", "112.121.176.2", "193.233.198.62", "112.121.176.3", "45.119.98.138", "103.68.109.13", "45.192.211.63", "45.119.98.140"]);
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(["45.192.211.7", "108.187.4.145", "151.242.63.149", "45.192.211.77", "193.26.115.80", "216.107.139.88", "108.187.4.116", "112.121.176.5", "104.164.46.39", "193.26.115.104", "112.121.176.4", "45.119.98.111", "112.121.176.6", "45.192.211.19", "80.76.49.3", "151.242.63.153", "112.121.176.2", "193.233.198.62", "112.121.176.3", "45.119.98.138", "103.68.109.13", "45.192.211.63", "45.119.98.140"]);
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(["draxwas.thruhere.net", "ge.ghostnod.h4ck.me", "richiescreen.com"]);
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 specific false positive scenarios and corresponding exclusions for the ThreatFox: PureRAT IOCs detection rule in an enterprise environment:

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