← Back to SOC feed Coverage →

URLhaus: malware_download 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-10T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets adversaries who embed known malicious download URLs in phishing lures or web pages to deliver initial payloads, a common tactic for establishing a foothold in the environment. Proactively hunting for these specific URLhaus entries in Azure Sentinel allows the SOC to identify compromised endpoints or suspicious user activity before the malware executes, reducing the mean time to detect and contain potential breaches.

IOC Summary

Threat: malware_download Total URLs: 7 Active URLs: 5

URLStatusThreatDate Added
hxxp://92.119.167.102:8000/x86onlinemalware_download2026-09-10
hxxp://92.119.167.102:8000/mipselonlinemalware_download2026-09-10
hxxp://92.119.167.102:8000/mips-bkonlinemalware_download2026-09-10
hxxp://92.119.167.102:8000/mipsonlinemalware_download2026-09-10
hxxp://38.55.99.215:8080/bot_agent.pyofflinemalware_download2026-09-10
hxxp://129.159.135.190/mc_bypass.x86_64onlinemalware_download2026-09-10
hxxp://38.55.99.215:8080/moot_loader.shofflinemalware_download2026-09-10

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["129.159.135.190", "92.119.167.102"]);
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(["129.159.135.190", "92.119.167.102"]);
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/