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

Hunt Hypothesis

The ThreatFox: PureRAT IOCs rule detects potential indicators of compromise associated with the PureRAT malware, which is known for its persistence and command-and-control capabilities. SOC teams should proactively hunt for these IOCs in Azure Sentinel to identify and mitigate advanced persistent threats that may be leveraging PureRAT to exfiltrate data or maintain long-term access to compromised systems.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port94[.]26[.]3[.]180:56002botnet_cc2026-06-07100%
ip:port94[.]26[.]3[.]180:56003botnet_cc2026-06-07100%
ip:port172[.]86[.]93[.]229:56003botnet_cc2026-06-07100%
ip:port209[.]99[.]185[.]216:1013botnet_cc2026-06-07100%
ip:port103[.]97[.]131[.]179:56002botnet_cc2026-06-07100%
ip:port94[.]26[.]3[.]52:56003botnet_cc2026-06-07100%
ip:port192[.]109[.]200[.]22:56001botnet_cc2026-06-07100%
ip:port193[.]202[.]84[.]1:8080botnet_cc2026-06-07100%
ip:port193[.]233[.]198[.]38:56002botnet_cc2026-06-07100%
ip:port45[.]156[.]87[.]169:5631botnet_cc2026-06-07100%
ip:port144[.]31[.]191[.]160:56002botnet_cc2026-06-07100%
ip:port116[.]213[.]43[.]144:444botnet_cc2026-06-07100%
ip:port45[.]138[.]16[.]104:56003botnet_cc2026-06-07100%
ip:port31[.]56[.]209[.]105:56001botnet_cc2026-06-07100%
ip:port151[.]243[.]250[.]237:56002botnet_cc2026-06-07100%
ip:port77[.]83[.]39[.]141:56002botnet_cc2026-06-07100%
ip:port77[.]83[.]39[.]141:56003botnet_cc2026-06-07100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["144.31.191.160", "192.109.200.22", "151.243.250.237", "209.99.185.216", "193.202.84.1", "94.26.3.52", "193.233.198.38", "116.213.43.144", "94.26.3.180", "77.83.39.141", "31.56.209.105", "172.86.93.229", "45.156.87.169", "45.138.16.104", "103.97.131.179"]);
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(["144.31.191.160", "192.109.200.22", "151.243.250.237", "209.99.185.216", "193.202.84.1", "94.26.3.52", "193.233.198.38", "116.213.43.144", "94.26.3.180", "77.83.39.141", "31.56.209.105", "172.86.93.229", "45.156.87.169", "45.138.16.104", "103.97.131.179"]);
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

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