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

Hunt Hypothesis

The detection identifies potential Mozi malware infections through suspicious URLs linked to the URLhaus intelligence feed, indicating an adversary is attempting to deliver malicious payloads. SOC teams should proactively hunt for this behavior in Azure Sentinel to detect and mitigate early-stage compromises before lateral movement and data exfiltration occur.

IOC Summary

Threat: Mozi Total URLs: 8 Active URLs: 8

URLStatusThreatDate Added
hxxp://125.41.2.191:36072/ionlinemalware_download2026-05-20
hxxp://123.8.37.56:54899/ionlinemalware_download2026-05-20
hxxp://123.8.37.56:54899/bin.shonlinemalware_download2026-05-20
hxxp://123.10.235.148:47525/bin.shonlinemalware_download2026-05-20
hxxp://115.55.54.153:41222/ionlinemalware_download2026-05-20
hxxp://115.55.54.153:41222/bin.shonlinemalware_download2026-05-20
hxxp://42.224.253.5:58209/ionlinemalware_download2026-05-20
hxxp://42.224.253.5:58209/bin.shonlinemalware_download2026-05-20

KQL: Url Dns Hunt

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