This detection identifies adversary behavior where attackers leverage known malicious URLs from the Mozi malware family to deliver payloads or redirect victims to phishing sites via URLhaus intelligence feeds. A SOC team should proactively hunt for this in Azure Sentinel because Mozi’s high severity and prevalence as a banking trojan necessitate early identification of compromised endpoints before lateral movement or credential theft occurs.
Threat: Mozi Total URLs: 16 Active URLs: 15
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://182.121.162.111:53842/i | online | malware_download | 2026-08-14 |
hxxp://42.225.220.81:55027/bin.sh | online | malware_download | 2026-08-14 |
hxxp://110.37.43.119:54028/i | online | malware_download | 2026-08-14 |
hxxp://182.117.68.188:46150/bin.sh | online | malware_download | 2026-08-14 |
hxxp://110.36.72.194:45299/i | online | malware_download | 2026-08-14 |
hxxp://47.215.224.64:37433/i | online | malware_download | 2026-08-14 |
hxxp://47.215.224.64:37433/bin.sh | online | malware_download | 2026-08-14 |
hxxp://42.235.50.219:33430/bin.sh | online | malware_download | 2026-08-14 |
hxxp://125.44.18.255:59219/bin.sh | online | malware_download | 2026-08-14 |
hxxp://125.42.193.159:51649/i | online | malware_download | 2026-08-14 |
hxxp://42.235.136.11:53679/i | offline | malware_download | 2026-08-14 |
hxxp://219.155.228.87:54535/bin.sh | online | malware_download | 2026-08-14 |
hxxp://42.234.186.105:46982/i | online | malware_download | 2026-08-14 |
hxxp://222.137.39.216:48007/i | online | malware_download | 2026-08-14 |
hxxp://182.119.120.150:46472/i | online | malware_download | 2026-08-14 |
hxxp://42.225.220.81:55027/i | online | malware_download | 2026-08-14 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["42.235.50.219", "42.225.220.81", "42.234.186.105", "125.42.193.159", "47.215.224.64", "182.119.120.150", "182.121.162.111", "125.44.18.255", "110.36.72.194", "182.117.68.188", "110.37.43.119", "222.137.39.216", "219.155.228.87"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc
// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["42.235.50.219", "42.225.220.81", "42.234.186.105", "125.42.193.159", "47.215.224.64", "182.119.120.150", "182.121.162.111", "125.44.18.255", "110.36.72.194", "182.117.68.188", "110.37.43.119", "222.137.39.216", "219.155.228.87"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios for the URLhaus: Mozi Malicious URLs detection rule in an enterprise environment, including suggested filters and exclusions:
Scenario: Scheduled Antivirus Definition Updates via Cloud Repositories
*.update.microsoft.com, *.crowdstrike.com) within the URLhaus integration or the EDR policy, ensuring traffic from these known-good sources bypasses Mozi’s deep inspection logic.Scenario: Admin Deployment of Third-Party SaaS Applications
Scenario: Automated Backup and Archive Retrieval Jobs