← Back to SOC feed Coverage →

URLhaus: rat Malicious URLs

ioc-hunt HIGH URLhaus
CommonSecurityLogDnsEvents
backdooriocurlhaus
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at URLhaus →
Retrieved: 2026-09-10T23:00:00Z · Confidence: medium

Hunt Hypothesis

This rule identifies known malicious URLs associated with the RAT (Remote Access Trojan) family, indicating potential compromise through web-based initial access or payload delivery. Proactively hunting for these indicators in Azure Sentinel allows the SOC to detect early-stage intrusions and prevent lateral movement before attackers establish persistent control over endpoints.

IOC Summary

Threat: rat Total URLs: 4 Active URLs: 0

URLStatusThreatDate Added
hxxps://web.opendrive.com/api/v1/download/file.json/MTFfODg2NTgwNDdfcVJ4VkI?inline=1offlinemalware_download2026-09-10
hxxps://web.opendrive.com/api/v1/download/file.json/MTFfODg2NTcxMTZfN01KTTk?inline=1offlinemalware_download2026-09-10
hxxps://web.opendrive.com/api/v1/download/file.json/MjBfMzc4MTM3MzdfQWQ2cnc?inline=1offlinemalware_download2026-09-10
hxxps://web.opendrive.com/api/v1/download/file.json/MjBfMzc4MTM3MDVfZkUyMk0?inline=1offlinemalware_download2026-09-10

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: rat
let malicious_domains = dynamic(["web.opendrive.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc

KQL: Url Proxy Hunt

// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["web.opendrive.com"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://urlhaus.abuse.ch/