← Back to SOC feed Coverage →

ThreatFox: PureRAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
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-28T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt hypothesis targets adversaries leveraging the PureRAT Remote Access Trojan to establish persistent command execution channels and facilitate sensitive data exfiltration within the network. Proactively hunting for these specific IOCs in Azure Sentinel is critical due to the high severity of PureRAT’s capability to silently compromise endpoints and extract confidential information before detection occurs.

IOC Summary

Malware Family: PureRAT Total IOCs: 13 IOC Types: ip:port, sha256_hash, sha1_hash, md5_hash

TypeValueThreat TypeFirst SeenConfidence
ip:port84[.]201[.]20[.]74:56001botnet_cc2026-08-2875%
ip:port84[.]201[.]20[.]74:56002botnet_cc2026-08-2875%
ip:port195[.]177[.]94[.]91:56003botnet_cc2026-08-2875%
ip:port183[.]90[.]187[.]111:10888botnet_cc2026-08-2875%
ip:port183[.]90[.]187[.]2:10888botnet_cc2026-08-2875%
ip:port183[.]90[.]187[.]73:10888botnet_cc2026-08-2875%
ip:port179[.]61[.]227[.]213:55004botnet_cc2026-08-2875%
ip:port154[.]201[.]82[.]108:56002botnet_cc2026-08-2875%
ip:port154[.]201[.]82[.]105:56001botnet_cc2026-08-2875%
ip:port136[.]0[.]213[.]135:56003botnet_cc2026-08-2875%
sha1_hash5bfdc93f36ecf75b5be5590a48bdc58503c34fb0payload2026-08-2895%
md5_hash2ca17777470b32e4e74b547e5f3f9306payload2026-08-2895%
sha256_hashf63eb2664ac9076250491b1cb0787042f75a056e235867d9f9967322c5cf20a4payload2026-08-2895%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["179.61.227.213", "136.0.213.135", "154.201.82.108", "84.201.20.74", "183.90.187.111", "195.177.94.91", "183.90.187.73", "154.201.82.105", "183.90.187.2"]);
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(["179.61.227.213", "136.0.213.135", "154.201.82.108", "84.201.20.74", "183.90.187.111", "195.177.94.91", "183.90.187.73", "154.201.82.105", "183.90.187.2"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - PureRAT
let malicious_hashes = dynamic(["5bfdc93f36ecf75b5be5590a48bdc58503c34fb0", "2ca17777470b32e4e74b547e5f3f9306", "f63eb2664ac9076250491b1cb0787042f75a056e235867d9f9967322c5cf20a4"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

Here are 4 specific false positive scenarios for the ThreatFox: PureRAT IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:

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