This detection identifies unknown Remote Access Trojan (RAT) indicators of compromise that may signal an adversary establishing covert command and control channels within the network. Proactive hunting for these IOCs in Azure Sentinel is critical to uncover stealthy lateral movement or data exfiltration attempts before they escalate into a full-scale breach.
Malware Family: Unknown RAT Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 217[.]60[.]241[.]32:443 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 147[.]189[.]169[.]192:8041 | botnet_cc | 2026-08-21 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown RAT
let malicious_ips = dynamic(["217.60.241.32", "147.189.169.192"]);
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(["217.60.241.32", "147.189.169.192"]);
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: Unknown RAT IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Endpoint Scanning by Antivirus Engines
C:\Program Files\CrowdStrike\fsquint.exe, C:\Windows\System32\DwService.exe) and their associated update endpoints. Additionally, filter out traffic originating from the internal IP range of the Security Operations Center (SOC) management servers where these agents reside.Scenario: Scheduled Remote Management Sessions via RMM Tools