This detection rule identifies unknown Remote Access Trojan (RAT) indicators of compromise that may signal an adversary establishing covert command and control channels within the environment. Proactively hunting for these signals in Azure Sentinel is critical to rapidly uncover stealthy RAT deployments before they escalate into broader data exfiltration or lateral movement incidents.
Malware Family: Unknown RAT Total IOCs: 6 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | kolpa.lol | botnet_cc | 2026-08-25 | 100% |
| url | hxxps://kolpa.lol/mods/api/log-download | botnet_cc | 2026-08-25 | 100% |
| url | hxxps://kolpa.lol/ws | botnet_cc | 2026-08-25 | 100% |
| url | hxxps://kolpa.lol/?p= | botnet_cc | 2026-08-25 | 100% |
| url | hxxps://kolpa.lol/get/config | botnet_cc | 2026-08-25 | 100% |
| url | hxxps://kolpa.lol/babayla/zor/yarisirlar | botnet_cc | 2026-08-25 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown RAT
let malicious_domains = dynamic(["kolpa.lol"]);
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://kolpa.lol/mods/api/log-download", "https://kolpa.lol/ws", "https://kolpa.lol/?p=", "https://kolpa.lol/get/config", "https://kolpa.lol/babayla/zor/yarisirlar"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios for the ThreatFox: Unknown RAT IOCs rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Legitimate Remote Management Tools (e.g., SCCM or Intune)
OS-Endpoint-Mgmt where the process name matches ccmexec.exe, intunacache.exe, or msdtc.exe. Additionally, whitelist specific destination IP ranges belonging to your internal Configuration Management infrastructure.Scenario: Scheduled Backup and Data Replication Jobs
vrb.exe (Veeam) or rubrik-agent, and the destination port falls within the standard backup range (e.g., ports 9443, 1587, or