← 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-26T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets the Mozi botnet, a prevalent IoT and Linux malware family that leverages compromised endpoints to establish command-and-control channels via known malicious URLs. Proactively hunting for these specific URL indicators in Azure Sentinel allows the SOC to identify compromised assets early, preventing the botnet from executing lateral movement or exfiltrating data before it can fully integrate into the network.

IOC Summary

Threat: Mozi Total URLs: 19 Active URLs: 18

URLStatusThreatDate Added
hxxp://125.46.145.9:35761/ionlinemalware_download2026-09-26
hxxp://203.177.28.149:37669/bin.shonlinemalware_download2026-09-26
hxxp://219.156.92.2:46083/ionlinemalware_download2026-09-26
hxxp://219.156.92.2:46083/bin.shonlinemalware_download2026-09-26
hxxp://42.231.71.197:35171/bin.shonlinemalware_download2026-09-26
hxxp://219.157.191.23:39761/ionlinemalware_download2026-09-26
hxxp://39.38.202.122:56017/ionlinemalware_download2026-09-26
hxxp://59.96.139.118:55543/ionlinemalware_download2026-09-26
hxxp://123.7.221.129:46601/ionlinemalware_download2026-09-26
hxxp://61.54.40.139:57666/bin.shonlinemalware_download2026-09-26
hxxp://59.96.139.118:55543/bin.shonlinemalware_download2026-09-26
hxxp://182.179.193.124:39492/Mozi.monlinemalware_download2026-09-26
hxxp://222.140.160.32:54198/ionlinemalware_download2026-09-26
hxxp://196.217.5.142:59028/ionlinemalware_download2026-09-26
hxxp://109.63.128.197:41019/ionlinemalware_download2026-09-26
hxxp://109.63.128.197:41019/bin.shonlinemalware_download2026-09-26
hxxp://61.52.158.118:44887/bin.shonlinemalware_download2026-09-26
hxxp://59.97.253.202:53557/iofflinemalware_download2026-09-26
hxxp://119.179.251.197:44155/ionlinemalware_download2026-09-26

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["61.54.40.139", "119.179.251.197", "125.46.145.9", "39.38.202.122", "182.179.193.124", "203.177.28.149", "219.156.92.2", "123.7.221.129", "222.140.160.32", "219.157.191.23", "196.217.5.142", "109.63.128.197", "61.52.158.118", "42.231.71.197", "59.96.139.118"]);
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(["61.54.40.139", "119.179.251.197", "125.46.145.9", "39.38.202.122", "182.179.193.124", "203.177.28.149", "219.156.92.2", "123.7.221.129", "222.140.160.32", "219.157.191.23", "196.217.5.142", "109.63.128.197", "61.52.158.118", "42.231.71.197", "59.96.139.118"]);
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/