This hunt targets indicators of compromise associated with an unidentified Remote Access Trojan, which adversaries deploy to establish persistent, covert control over compromised endpoints. Proactively hunting for these IOCs in Azure Sentinel is critical to identify and isolate infected systems before the attacker leverages the RAT for lateral movement or data exfiltration.
Malware Family: Unknown RAT Total IOCs: 2 IOC Types: domain, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 191[.]101[.]130[.]73:8041 | botnet_cc | 2026-09-13 | 75% |
| domain | relay.miranarts-top.cc | botnet_cc | 2026-09-13 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown RAT
let malicious_ips = dynamic(["191.101.130.73"]);
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(["191.101.130.73"]);
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(["relay.miranarts-top.cc"]);
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 |
TeamViewer.exe, AnyDesk.exe) or exclude connections to known vendor IP ranges associated with these tools.C:\Users\<User>\AppData\Local\Temp or C:\ProgramData that mimic RAT staging areas.
devenv.exe, idea64.exe) or where the file path contains standard development subdirectories like \bin\ or \obj\.VeeamBackup.exe, Dism.exe) or where the event occurs during defined maintenance windows (e.g., 02:00–04:00 UTC) on server roles.