This rule detects the presence of URLs associated with the RAT (Remote Access Trojan) family, indicating potential compromise or lateral movement via malicious web links. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify compromised endpoints or phishing campaigns before the RAT establishes persistent remote control over the environment.
Threat: rat Total URLs: 13 Active URLs: 10
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://204.44.93.77/128/img_032911.png | online | malware_download | 2026-09-17 |
hxxp://96.44.167.210/16/goodthingsformebest.jS | offline | malware_download | 2026-09-17 |
hxxps://bun-pullz.b-cdn.net/img_083453.png | online | malware_download | 2026-09-17 |
hxxp://212.2.35.14/35/img_182135.png | online | malware_download | 2026-09-17 |
hxxp://107.173.227.124/60/img_185503.png | offline | malware_download | 2026-09-17 |
hxxp://96.44.167.210/15/img_222310.png | online | malware_download | 2026-09-17 |
hxxp://192.236.217.110/83/img_215522.png | online | malware_download | 2026-09-17 |
hxxp://107.172.235.223/26/img_233938.png | online | malware_download | 2026-09-17 |
hxxp://107.172.172.220/80/img_001141.png | online | malware_download | 2026-09-17 |
hxxp://107.174.33.14/70/img_003449.png | online | malware_download | 2026-09-17 |
hxxp://64.89.160.97/5.jpg | online | malware_download | 2026-09-17 |
hxxp://107.173.227.126/img/5.jpg | offline | malware_download | 2026-09-17 |
hxxp://signageinsignia.co.za/kizzy/5.jpg | online | malware_download | 2026-09-17 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: rat
let malicious_domains = dynamic(["signageinsignia.co.za", "204.44.93.77", "bun-pullz.b-cdn.net", "212.2.35.14", "107.172.172.220", "107.174.33.14", "64.89.160.97", "192.236.217.110", "107.172.235.223", "96.44.167.210"]);
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(["signageinsignia.co.za", "204.44.93.77", "bun-pullz.b-cdn.net", "212.2.35.14", "107.172.172.220", "107.174.33.14", "64.89.160.97", "192.236.217.110", "107.172.235.223", "96.44.167.210"]);
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 |
10.20.0.0/24 (Staging Network) or exclude user agents containing Mozilla/5.0 (compatible; SecurityTestBot/1.0).svc-vuln-scan or automated-crawler and exclude HTTP status codes 404 or 302 if the rule triggers on response headers rather than just the request.LinkPreview/1.0 or Twitterbot/1.0 and exclude source IPs from the 192.168.10.0/24 (Marketing Office VLAN).python.exe or java.exe when the destination URL matches the known false positive list (e.g