This rule detects adversary behavior where threat actors leverage Mozi-tagged malicious URLs to deliver payloads that compromise user endpoints through web browsing activities. A SOC team should proactively hunt for these indicators in Azure Sentinel to identify early-stage infections and prevent lateral movement before the malware establishes persistence within the network.
Threat: Mozi Total URLs: 10 Active URLs: 9
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://42.226.71.247:52557/i | online | malware_download | 2026-07-30 |
hxxp://110.36.29.195:56053/i | online | malware_download | 2026-07-30 |
hxxp://61.53.153.17:45226/i | online | malware_download | 2026-07-30 |
hxxp://61.53.153.17:45226/bin.sh | online | malware_download | 2026-07-30 |
hxxp://27.220.11.19:34692/i | online | malware_download | 2026-07-30 |
hxxp://42.226.68.162:50573/i | online | malware_download | 2026-07-30 |
hxxp://42.226.68.162:50573/bin.sh | online | malware_download | 2026-07-30 |
hxxp://123.5.8.154:53588/i | offline | malware_download | 2026-07-30 |
hxxp://115.48.151.195:47978/i | online | malware_download | 2026-07-30 |
hxxp://115.48.151.195:47978/bin.sh | online | malware_download | 2026-07-30 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["42.226.68.162", "110.36.29.195", "61.53.153.17", "27.220.11.19", "115.48.151.195", "42.226.71.247"]);
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.226.68.162", "110.36.29.195", "61.53.153.17", "27.220.11.19", "115.48.151.195", "42.226.71.247"]);
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 5 specific false positive scenarios for the URLhaus: Mozi Malicious URLs detection rule, including targeted filters and exclusions suitable for an enterprise environment:
Scenario: Automated vulnerability scanners performing deep web crawls.
Tenable.Nessus, QualysCloudAgent) and restrict the scope to specific Service Accounts used by these scanners. Alternatively, exclude traffic originating from the dedicated DMZ subnet where scanning appliances reside.Scenario: Scheduled backup jobs accessing cloud storage or archive repositories.
*.amazonaws.com, *.azureedge.net) in the detection logic to bypass Mozi-specific URL checks for these destinations.Scenario: Third-party SaaS integration webhooks and API callbacks.