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

Hunt Hypothesis

This hunt targets the presence of known malicious URLs associated with Remote Access Trojans (RATs) to identify potential footholds or command-and-control channels within the environment. Proactively hunting for these indicators in Azure Sentinel allows the SOC to detect and isolate compromised assets before the adversary can establish persistence or exfiltrate sensitive data.

IOC Summary

Threat: rat Total URLs: 2 Active URLs: 1

URLStatusThreatDate Added
hxxp://159.69.59.93/70/img_091646.pngofflinemalware_download2026-09-15
hxxps://ficus.in/img/img_214254.pngonlinemalware_download2026-09-15

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: rat
let malicious_domains = dynamic(["ficus.in"]);
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(["ficus.in"]);
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/