This detection identifies adversary activity involving remote access trojan (RAT) malware by flagging network traffic directed toward known malicious URLs curated by URLhaus. Proactive hunting for these indicators in Azure Sentinel is critical to rapidly isolate compromised endpoints and prevent lateral movement or data exfiltration before the RAT establishes persistence on the network.
Threat: rat Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://193.142.58.29/60/img_214748.png | offline | malware_download | 2026-07-24 |
hxxp://107.173.143.56/xampp/MSI_PRO.png | online | malware_download | 2026-07-24 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: rat
let malicious_domains = dynamic(["107.173.143.56"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc
// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["107.173.143.56"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the URLhaus: rat Malicious URLs detection rule, along with suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Ransomware Backup Scans by Veeam or Commvault
rat (RAT) agent components for remote management and can be flagged if the URL contains specific paths or query strings resembling known RAT distribution points.443) and a specific user agent string containing Veeam or Commvault.Scenario: Microsoft Defender for Endpoint (MDE) Cloud Connectivity Checks
*.microsoft.com, *.azureresources.azure.cn) AND the Process Name is MsMpEng.exe or SenseService.exe.Scenario: Remote Desktop Gateway (RDGW) and Citrix Workspace Connections