This hunt hypothesis detects adversary behavior involving the deployment of PureRAT remote access trojans by monitoring for specific Indicators of Compromise (IOCs) that signal active reconnaissance or lateral movement within the network. A SOC team should proactively hunt for these IOCs in Azure Sentinel to identify early-stage infections and prevent potential data exfiltration or command-and-control communications before they escalate into broader compromises.
Malware Family: PureRAT Total IOCs: 8 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 91[.]92[.]42[.]22:443 | botnet_cc | 2026-08-10 | 75% |
| ip:port | 209[.]99[.]190[.]23:56014 | botnet_cc | 2026-08-10 | 75% |
| ip:port | 104[.]239[.]66[.]245:443 | botnet_cc | 2026-08-10 | 75% |
| ip:port | 154[.]29[.]72[.]36:6000 | botnet_cc | 2026-08-10 | 75% |
| ip:port | 204[.]77[.]130[.]227:56001 | botnet_cc | 2026-08-10 | 75% |
| ip:port | 204[.]77[.]130[.]227:56002 | botnet_cc | 2026-08-10 | 75% |
| ip:port | 204[.]77[.]130[.]227:56003 | botnet_cc | 2026-08-10 | 75% |
| ip:port | 91[.]219[.]238[.]82:56001 | botnet_cc | 2026-08-10 | 99% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["104.239.66.245", "91.219.238.82", "209.99.190.23", "91.92.42.22", "154.29.72.36", "204.77.130.227"]);
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(["104.239.66.245", "91.219.238.82", "209.99.190.23", "91.92.42.22", "154.29.72.36", "204.77.130.227"]);
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, along with targeted filters and exclusions suitable for an enterprise environment:
Scenario: Automated Backup Script Execution
powershell.exe with arguments that match the PureRAT IOCs (specifically network connection patterns or specific hash values used by common backup tools).C:\Program Files\BackupAgent\Scripts\DailyBackup.ps1. Additionally, filter out alerts where the parent process is Task Scheduler (svchost.exe) and the execution time falls within the defined maintenance window (e.g., 02:00–04:00).Scenario: Endpoint Protection Agent Updates
FalconService.exe (CrowdStrike) or MsMpEng.exe (Defender). If the IOC is a specific URL, add the vendor’s update distribution domain (e.g., *.falcon.crowdstrike.com) to the allow-list.Scenario: Admin Remote Session via RDP