This hunt hypothesis detects adversary behavior involving the deployment of PureRAT remote access trojans by monitoring for specific indicators of compromise such as malicious IP addresses and file hashes within the Azure Sentinel environment. A SOC team should proactively hunt for these IOCs to identify early-stage lateral movement and command-and-control communications that could lead to credential theft or data exfiltration before they escalate into broader incidents.
Malware Family: PureRAT Total IOCs: 8 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 209[.]99[.]184[.]151:55006 | botnet_cc | 2026-08-12 | 75% |
| ip:port | 209[.]99[.]184[.]151:55009 | botnet_cc | 2026-08-12 | 75% |
| ip:port | 192[.]229[.]115[.]162:56002 | botnet_cc | 2026-08-12 | 75% |
| ip:port | 192[.]229[.]115[.]154:56002 | botnet_cc | 2026-08-12 | 75% |
| ip:port | 178[.]211[.]155[.]64:56001 | botnet_cc | 2026-08-12 | 75% |
| ip:port | 172[.]245[.]23[.]153:56001 | botnet_cc | 2026-08-12 | 75% |
| ip:port | 172[.]245[.]23[.]153:56002 | botnet_cc | 2026-08-12 | 75% |
| ip:port | 172[.]245[.]23[.]153:56003 | botnet_cc | 2026-08-12 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["192.229.115.162", "192.229.115.154", "209.99.184.151", "178.211.155.64", "172.245.23.153"]);
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(["192.229.115.162", "192.229.115.154", "209.99.184.151", "178.211.155.64", "172.245.23.153"]);
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 5 specific false positive scenarios for the ThreatFox: PureRAT IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Endpoint Protection Scans by Defender or CrowdStrike
Process Name matches known EDR executables (e.g., MsMpEng.exe, CSFalconService.exe) and the User Account is a local system service account (e.g., NT SERVICE\DefenderSvc).Software Deployment via SCCM or Intune
Process Name ccmsetup.exe or Microsoft.IntuneManagementAgent.exe where the destination IP falls within the internal corporate subnet range (e.g., 10.x.x.x).Scheduled PowerShell Maintenance Scripts