← 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-09-08T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt targets the presence of known Mozi botnet command-and-control URLs, which adversaries use to establish persistent remote access and execute malicious payloads on compromised hosts. Proactively hunting for these indicators in Azure Sentinel allows the SOC team to identify potentially infected assets before the botnet can propagate laterally or initiate large-scale DDoS attacks.

IOC Summary

Threat: Mozi Total URLs: 5 Active URLs: 5

URLStatusThreatDate Added
hxxp://42.226.67.57:56542/ionlinemalware_download2026-09-08
hxxp://182.126.116.12:55360/bin.shonlinemalware_download2026-09-08
hxxp://27.215.124.53:58552/ionlinemalware_download2026-09-08
hxxp://222.142.253.114:60129/ionlinemalware_download2026-09-08
hxxp://222.142.253.114:60129/bin.shonlinemalware_download2026-09-08

KQL: Url Dns Hunt

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