This hunt detects adversary activity involving the PureRAT remote access trojan by monitoring for specific indicators of compromise such as malicious file hashes and network connections. Proactively hunting for these signals in Azure Sentinel is critical to identify early-stage infections that could lead to persistent lateral movement and data exfiltration within the enterprise environment.
Malware Family: PureRAT Total IOCs: 8 IOC Types: domain, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 91[.]92[.]40[.]209:443 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 64[.]95[.]13[.]219:443 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 65[.]1[.]70[.]222:56001 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 172[.]236[.]157[.]30:56001 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 125[.]62[.]77[.]141:56001 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 172[.]111[.]198[.]212:56011 | botnet_cc | 2026-08-21 | 75% |
| domain | brahmalihvc.online | botnet_cc | 2026-08-21 | 100% |
| ip:port | 209[.]99[.]190[.]23:56015 | botnet_cc | 2026-08-21 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["65.1.70.222", "209.99.190.23", "125.62.77.141", "172.236.157.30", "172.111.198.212", "91.92.40.209", "64.95.13.219"]);
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(["65.1.70.222", "209.99.190.23", "125.62.77.141", "172.236.157.30", "172.111.198.212", "91.92.40.209", "64.95.13.219"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - PureRAT
let malicious_domains = dynamic(["brahmalihvc.online"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
DnsEvents | 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:
Scenario: Legitimate Software Deployment via SCCM/Intune
ccmsetup.exe (SCCM) or IntuneManagementExtension.exe, and the destination IP belongs to the internal corporate management subnet (e.g., 10.x.x.x).Scenario: Scheduled Maintenance by RMM Tools
cwagent.exe or datto-agent.exe.Scenario: Internal Security Scanning by EDR