This hunt detects adversary activity involving the PureRAT remote access trojan by identifying its specific indicators of compromise within network and endpoint telemetry. Proactively hunting for these IOCs in Azure Sentinel is critical to uncover early-stage lateral movement or command-and-control communications that may evade standard signature-based detections.
Malware Family: PureRAT Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 95[.]133[.]229[.]173:443 | botnet_cc | 2026-08-17 | 75% |
| ip:port | 83[.]136[.]211[.]230:443 | botnet_cc | 2026-08-17 | 75% |
| ip:port | 217[.]60[.]195[.]226:443 | botnet_cc | 2026-08-17 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["95.133.229.173", "83.136.211.230", "217.60.195.226"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["95.133.229.173", "83.136.211.230", "217.60.195.226"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios for the ThreatFox: PureRAT IOCs detection rule, along with targeted filtering strategies:
Scenario: Legitimate RMM Agent Communication
DesktopCentralAgent.exe, ccmexec.exe) AND the destination IP belongs to the internal management subnet (e.g., 10.20.x.x).Scenario: Scheduled Security Tool Updates
falcon.sys or SentinelOne.exe, and the destination domain matches the vendor’s update CDN (e.g., *.crowdstrike.com).Scenario: Admin-Driven Script Execution