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

Hunt Hypothesis

This hypothesis targets the Mozi malware family, a backdoor that establishes remote command execution and data exfiltration channels through malicious URLs often delivered via phishing campaigns. Proactively hunting for these URLs in Azure Sentinel allows the SOC team to identify compromised endpoints early, preventing the malware from achieving persistence and exfiltrating sensitive data before it spreads laterally within the environment.

IOC Summary

Threat: Mozi Total URLs: 4 Active URLs: 1

URLStatusThreatDate Added
hxxp://42.231.47.159:47811/ionlinemalware_download2026-09-11
hxxp://196.64.168.209:49989/iofflinemalware_download2026-09-11
hxxp://59.180.138.72:54794/iofflinemalware_download2026-09-11
hxxp://79.29.100.219:58828/bin.shofflinemalware_download2026-09-11

KQL: Url Dns Hunt

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