← Back to SOC feed Coverage →

URLhaus: ua-wget 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-07-24T23:00:00Z · Confidence: medium

Hunt Hypothesis

This detection identifies adversary activity where threat actors utilize wget utilities to download malware or exfiltrate data via known malicious URLs flagged by URLhaus. A SOC team should proactively hunt for this behavior in Azure Sentinel because wget is a common tool often leveraged during the initial execution phase of attacks, and early identification of these specific high-severity indicators can prevent lateral movement and compromise propagation.

IOC Summary

Threat: ua-wget Total URLs: 5 Active URLs: 0

URLStatusThreatDate Added
hxxp://5.182.210.61/3d9525offlinemalware_download2026-07-24
hxxp://5.182.210.61/ff249fofflinemalware_download2026-07-24
hxxp://5.182.210.61/46318aofflinemalware_download2026-07-24
hxxp://5.182.210.61/cbff42offlinemalware_download2026-07-24
hxxp://5.182.210.61/b451e5offlinemalware_download2026-07-24

KQL: Url Dns Hunt

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

False Positive Scenarios for “URLhaus: ua-wget Malicious URLs”

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