← Back to SOC feed Coverage →

URLhaus: malware Malicious URLs

ioc-hunt HIGH URLhaus
CommonSecurityLogDnsEvents
iocurlhaus
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-13T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt targets the presence of known malicious URLs from the URLhaus feed, indicating potential web-based delivery mechanisms or compromised endpoints actively communicating with malicious infrastructure. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify early-stage intrusions or lateral movement attempts before they escalate into full-blown breaches.

IOC Summary

Threat: malware Total URLs: 2 Active URLs: 1

URLStatusThreatDate Added
hxxps://tapped.top/downloads/delta-executor.zip?dl=1789318573398onlinemalware_download2026-09-13
hxxps://www.mediafire.com/file/p3mfnlwgzn6rl90/DeltaExecutor.zip/fileofflinemalware_download2026-09-13

KQL: Url Dns Hunt

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