This detection rule identifies potential Remote Access Trojan (RAT) activity by monitoring for three specific Indicators of Compromise (IOCs) linked to unknown threat actors. Proactively hunting for these signals in Azure Sentinel is critical to rapidly detect early-stage lateral movement and command-and-control communications before adversaries establish persistent access within the network.
Malware Family: Unknown RAT Total IOCs: 3 IOC Types: domain, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | s33mon3y.noip.at | botnet_cc | 2026-08-19 | 100% |
| domain | 222align.noip.at | botnet_cc | 2026-08-19 | 100% |
| ip:port | 64[.]89[.]160[.]127:4055 | botnet_cc | 2026-08-19 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown RAT
let malicious_ips = dynamic(["64.89.160.127"]);
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(["64.89.160.127"]);
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 - Unknown RAT
let malicious_domains = dynamic(["s33mon3y.noip.at", "222align.noip.at"]);
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 specific false positive scenarios and corresponding filters for the ThreatFox: Unknown RAT IOCs detection rule in a legitimate enterprise environment:
Scenario: Automated Patch Deployment via SCCM/Intune
msiexec.exe, ccmsetup.exe) that mimic RAT behavior by establishing persistent connections and modifying registry keys for telemetry.ccmsetup.exe or Microsoft.IntuneManagementExtension.exe running under the SYSTEM account, specifically during defined maintenance windows (e.g., 02:00–04:00 UTC).Scenario: Cloud Backup Agent Synchronization
Veeam.Backup.Agent.exe and Rubrik.Central.Service.exe, excluding any alerts where the process command line contains keywords like “sync,” “backup,” or “snapshot.”Scenario: Scheduled PowerShell Health Checks
powershell.exe) that query system health, check service status, and report metrics. These scripts often invoke network requests and modify local configuration files, generating IOCs indistinguishable from RAT activity.