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

Hunt Hypothesis

The ThreatFox: PureRAT IOCs rule detects potential adversary activity associated with the PureRAT malware, which is known for its persistence and remote command execution capabilities. SOC teams should proactively hunt for these indicators in Azure Sentinel to identify and mitigate advanced persistent threats that could exfiltrate data or compromise critical systems.

IOC Summary

Malware Family: PureRAT Total IOCs: 6 IOC Types: sha256_hash, ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port80[.]76[.]49[.]194:56003botnet_cc2026-06-1175%
ip:port80[.]76[.]49[.]194:56002botnet_cc2026-06-1175%
ip:port80[.]76[.]49[.]194:56001botnet_cc2026-06-1175%
sha256_hash7e49b00bef718eb7e3645d8705e6521b011f66d10f06201e209a8a0511abc81apayload2026-06-1175%
sha256_hashb50a05e38e9d04fd5c4dac4f29850649a77bb3ae443639206c908058e45593ebpayload2026-06-1175%
sha256_hasha05254840b45fcbfd12d09fd416ca860e2cfcab793f4780fa8f138b8f7a86aabpayload2026-06-1175%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["80.76.49.194"]);
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(["80.76.49.194"]);
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(["7e49b00bef718eb7e3645d8705e6521b011f66d10f06201e209a8a0511abc81a", "b50a05e38e9d04fd5c4dac4f29850649a77bb3ae443639206c908058e45593eb", "a05254840b45fcbfd12d09fd416ca860e2cfcab793f4780fa8f138b8f7a86aab"]);
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

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