← 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-04-18T16:05:06Z · Confidence: medium

Hunt Hypothesis

The hunt hypothesis detects adversaries using ua-wget to download malicious payloads from compromised URLs, leveraging URLhaus intelligence to identify potential command and control or data exfiltration channels. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate early-stage malware execution and lateral movement attempts.

IOC Summary

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

URLStatusThreatDate Added
hxxp://65.87.7.5/lllofflinemalware_download2026-04-18
hxxp://65.87.7.5/mpslofflinemalware_download2026-04-18
hxxp://176.65.148.173/i686offlinemalware_download2026-04-18
hxxp://176.65.148.173/arm5offlinemalware_download2026-04-18
hxxp://176.65.148.173.ptr.pfcloud.network/i686offlinemalware_download2026-04-18
hxxp://176.65.148.173.ptr.pfcloud.network/arm5offlinemalware_download2026-04-18
hxxps://filebin.net/lowoyel91h576uav/cag54tgv8nofflinemalware_download2026-04-18

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ua-wget
let malicious_domains = dynamic(["65.87.7.5", "filebin.net", "176.65.148.173.ptr.pfcloud.network", "176.65.148.173"]);
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(["65.87.7.5", "filebin.net", "176.65.148.173.ptr.pfcloud.network", "176.65.148.173"]);
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/