← 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-09T23:00:00Z · Confidence: medium

Hunt Hypothesis

This rule detects the presence of URLs associated with the RAT malware family, indicating that an adversary is likely using these specific endpoints for command-and-control or payload delivery. Proactively hunting for these indicators in Azure Sentinel allows the SOC team to identify compromised assets or active threat actor infrastructure before the malware can fully establish persistence or exfiltrate sensitive data.

IOC Summary

Threat: rat Total URLs: 5 Active URLs: 0

URLStatusThreatDate Added
hxxps://od.lk/s/MTZfMjA1NjE4Mjg1X3Uwdk5H/img_233217.pngofflinemalware_download2026-09-09
hxxps://web.opendrive.com/api/v1/download/file.json/MTZfMjA1NjE3OTY2X2c4UG1u?inline=1offlinemalware_download2026-09-09
hxxps://web.opendrive.com/api/v1/download/file.json/MTZfMjA1NjE4Mjg1X3Uwdk5H?inline=1offlinemalware_download2026-09-09
hxxps://web.opendrive.com/api/v1/download/file.json/MThfNzM3NzA4MDVfc0cwenI?inline=1offlinemalware_download2026-09-09
hxxps://web.opendrive.com/api/v1/download/file.json/MThfNzM3NzA4MDJfaThiVFo?inline=1offlinemalware_download2026-09-09

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: rat
let malicious_domains = dynamic(["web.opendrive.com", "od.lk"]);
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", "od.lk"]);
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/