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

Hunt Hypothesis

This hunt detects adversary behavior involving the initial deployment and command-and-control activities of the PureRAT remote access trojan by matching network traffic against a curated set of ten specific indicators of compromise. The SOC team should proactively hunt for these IOCs within Azure Sentinel to rapidly identify early-stage infections, as PureRAT’s ability to establish persistent backdoors can lead to significant data exfiltration and lateral movement if left undetected.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port144[.]31[.]6[.]0:443botnet_cc2026-09-0175%
ip:port38[.]18[.]228[.]183:56001botnet_cc2026-09-0150%
ip:port91[.]219[.]237[.]84:56001botnet_cc2026-09-0150%
ip:port91[.]219[.]236[.]190:56001botnet_cc2026-09-0150%
ip:port104[.]254[.]90[.]162:28471botnet_cc2026-09-0150%
ip:port64[.]89[.]160[.]47:56001botnet_cc2026-09-0150%
ip:port151[.]241[.]99[.]28:56001botnet_cc2026-09-0150%
ip:port181[.]215[.]47[.]151:56001botnet_cc2026-09-0150%
ip:port163[.]245[.]205[.]142:56001botnet_cc2026-09-0150%
ip:port195[.]20[.]115[.]25:56001botnet_cc2026-09-0150%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["91.219.237.84", "181.215.47.151", "91.219.236.190", "144.31.6.0", "151.241.99.28", "163.245.205.142", "104.254.90.162", "195.20.115.25", "64.89.160.47", "38.18.228.183"]);
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.219.237.84", "181.215.47.151", "91.219.236.190", "144.31.6.0", "151.241.99.28", "163.245.205.142", "104.254.90.162", "195.20.115.25", "64.89.160.47", "38.18.228.183"]);
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 the false positive scenarios and corresponding filters for the ThreatFox: PureRAT IOCs detection rule:

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