This hunt detects adversary activity involving specific indicators of compromise (IOCs) linked to the PureRAT remote access trojan, which is frequently used for credential theft and lateral movement within enterprise networks. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify early-stage infections before they escalate into broader data exfiltration or persistent backdoor access incidents.
Malware Family: PureRAT Total IOCs: 7 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 89[.]213[.]118[.]63:56002 | botnet_cc | 2026-07-31 | 75% |
| ip:port | 82[.]22[.]204[.]150:56001 | botnet_cc | 2026-07-31 | 75% |
| ip:port | 27[.]124[.]36[.]153:443 | botnet_cc | 2026-07-31 | 75% |
| ip:port | 207[.]174[.]0[.]103:56002 | botnet_cc | 2026-07-31 | 75% |
| ip:port | 194[.]59[.]30[.]183:443 | botnet_cc | 2026-07-31 | 75% |
| ip:port | 181[.]215[.]242[.]84:56001 | botnet_cc | 2026-07-31 | 75% |
| ip:port | 13[.]205[.]246[.]212:443 | botnet_cc | 2026-07-31 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["207.174.0.103", "194.59.30.183", "13.205.246.212", "89.213.118.63", "82.22.204.150", "181.215.242.84", "27.124.36.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(["207.174.0.103", "194.59.30.183", "13.205.246.212", "89.213.118.63", "82.22.204.150", "181.215.242.84", "27.124.36.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 3-5 specific false positive scenarios for the ThreatFox: PureRAT IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Enterprise Endpoint Protection Scans
MsMpEng.exe (Defender), FalconSensorService.exe (CrowdStrike), or SentinelOne.exe. Additionally, exclude file paths located within the vendor’s installation directory (e.g., C:\Program Files\Microsoft Defender Antivirus\).Scenario: Automated Patch Management & Deployment Jobs
NT SERVICE\SCCM or SYSTEM where the process is spawned by a known scheduled task (e.g., “Software Update Deployment” or “Patch Cycle”). You can also exclude file paths under standard deployment directories like C:\Windows\CCM\Cache\.**Scenario: Internal Development & CI/CD Pipeline Artifacts