This hunt detects adversary activity involving the PureRAT remote access trojan by identifying specific indicators of compromise within network and endpoint telemetry. Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly identify and contain stealthy lateral movement or data exfiltration attempts before they escalate into broader incidents.
Malware Family: PureRAT Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 23[.]111[.]14[.]80:443 | botnet_cc | 2026-08-14 | 75% |
| ip:port | 104[.]251[.]180[.]164:55009 | botnet_cc | 2026-08-14 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureRAT
let malicious_ips = dynamic(["23.111.14.80", "104.251.180.164"]);
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(["23.111.14.80", "104.251.180.164"]);
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:
Scenario: Automated Security Tool Updates via Scheduled Tasks
CrowdStrike Falcon Sensor, SentinelOne Agent, Microsoft Defender Antivirus) when they connect to the flagged IOCs. Specifically, exclude traffic where the parent process is C:\Program Files\Microsoft Security Client\MsMpEng.exe or C:\ProgramData\CrowdStrike\FalconSensor\csfalcon.exe.Scenario: Admin Deployment of Internal Configuration Management Tools
svc_ansible_deploy, SCCM_01) and restrict the rule to only trigger on non-admin user sessions or exclude traffic destined for internal IP ranges defined in the corporate asset inventory (e.g., 10.20.40.x).Scenario: Legitimate Remote Access via Third-Party Support Tools