This hypothesis targets the presence of known PureRAT indicators of compromise, which are frequently used by threat actors to establish persistent remote access and execute malicious payloads. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify compromised endpoints before the adversary can leverage the RAT for lateral movement or data exfiltration.
Malware Family: PureRAT Total IOCs: 8 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 84[.]21[.]189[.]110:56003 | botnet_cc | 2026-09-25 | 75% |
| ip:port | 38[.]240[.]49[.]89:56001 | botnet_cc | 2026-09-25 | 75% |
| ip:port | 31[.]56[.]209[.]161:56001 | botnet_cc | 2026-09-25 | 75% |
| ip:port | 31[.]56[.]209[.]161:56002 | botnet_cc | 2026-09-25 | 75% |
| ip:port | 31[.]56[.]209[.]161:443 | botnet_cc | 2026-09-25 | 75% |
| ip:port | 212[.]86[.]125[.]129:56001 | botnet_cc | 2026-09-25 | 75% |
| ip:port | 212[.]86[.]125[.]129:56002 | botnet_cc | 2026-09-25 | 75% |
| ip:port | 156[.]236[.]76[.]31:443 | botnet_cc | 2026-09-25 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["38.240.49.89", "156.236.76.31", "212.86.125.129", "31.56.209.161", "84.21.189.110"]);
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(["38.240.49.89", "156.236.76.31", "212.86.125.129", "31.56.209.161", "84.21.189.110"]);
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 |
powershell.exe or pwsh.exe and the command line contains keywords like Test-NetConnection, Resolve-DnsName, or specific audit script names (e.g., net-audit.ps1).wireshark.exe, prtg.exe, zabbix_agent2.exe) or where the user account belongs to a service group like NETMON-SVC.csagent.exe, wazuh-agent.exe, velociraptor.exe) and the object path contains /rules/, /sigma/, or /yara/ directories.