This hypothesis targets the presence of known indicators of compromise associated with the “Unknown RAT” malware, which typically establishes remote access and control over compromised endpoints. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify and isolate infected hosts early, preventing the adversary from leveraging the RAT for lateral movement, data exfiltration, or persistence within the environment.
Malware Family: Unknown RAT Total IOCs: 3 IOC Types: domain, url, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://45[.]141[.]148[.]134:2002/AymxbQ | botnet_cc | 2026-09-10 | 75% |
| domain | truspanel.com | botnet_cc | 2026-09-10 | 100% |
| ip:port | 185[.]162[.]75[.]152:8041 | botnet_cc | 2026-09-10 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown RAT
let malicious_ips = dynamic(["185.162.75.152"]);
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(["185.162.75.152"]);
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(["truspanel.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - Unknown RAT
let malicious_urls = dynamic(["https://45.141.148.134:2002/AymxbQ"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp 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 |
UrlClickEvents | Ensure this data connector is enabled |
Legacy Application Maintenance via Scheduled Tasks
schtasks or Windows Task Scheduler to run a legacy line-of-business application installer or updater that includes a known hash or file path associated with the “Unknown RAT” IOCs. This is common in environments with older, unpatched software that hasn’t been replaced.schtasks.exe or Task Scheduler and the user account belongs to a service account or a specific “App Maintenance” security group.Third-Party Vendor Support Sessions
%TEMP% or C:\Users\Public) that matches one of the IOCs. These tools often drop helper executables that may share attributes with known RATs.teamviewer.exe, anydesk.exe) as the parent process. Exclude if the user account is in a “Vendor Support” group and the execution path is within a standard temp or public folder.Security Tooling and EDR Agents
csagent.exe, `sent