← Back to SOC feed Coverage →

URLhaus: Mozi 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-08-30T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt hypothesis targets adversary behavior where threat actors leverage Mozi-malicious URLs to deliver payloads or redirect users to phishing campaigns designed to compromise Azure workloads. A SOC team should proactively hunt for these specific indicators in Azure Sentinel to rapidly identify and isolate potential lateral movement or initial access vectors before they escalate into broader security incidents.

IOC Summary

Threat: Mozi Total URLs: 3 Active URLs: 3

URLStatusThreatDate Added
hxxp://115.50.95.179:56165/ionlinemalware_download2026-08-30
hxxp://125.47.228.36:48346/ionlinemalware_download2026-08-30
hxxp://125.47.228.36:48346/bin.shonlinemalware_download2026-08-30

KQL: Url Dns Hunt

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

Here are specific false positive scenarios and corresponding filters for the URLhaus: Mozi Malicious URLs detection rule in an enterprise environment:

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