This detection identifies adversary activity involving the Mozi malware family by flagging network traffic to known malicious URLs that facilitate command-and-control communications or payload delivery. Proactive hunting in Azure Sentinel is critical because Mozi’s sophisticated evasion techniques often bypass standard signature-based defenses, requiring behavioral analysis of these specific URL patterns to prevent early-stage infection and lateral movement within the environment.
Threat: Mozi Total URLs: 4 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://188.19.145.228:54084/i | online | malware_download | 2026-08-26 |
hxxp://115.62.133.38:35752/i | online | malware_download | 2026-08-26 |
hxxp://27.207.186.54:35423/i | online | malware_download | 2026-08-26 |
hxxp://123.4.232.69:32795/i | online | malware_download | 2026-08-26 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["115.62.133.38", "27.207.186.54", "188.19.145.228", "123.4.232.69"]);
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(["115.62.133.38", "27.207.186.54", "188.19.145.228", "123.4.232.69"]);
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 3-5 specific false positive scenarios for the URLhaus: Mozi Malicious URLs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Security Team Manual Threat Hunting via URLhaus API
urlhaus-api endpoint directly. These queries often hit known Mozi-tagged URLs that are currently being analyzed in the sandbox, triggering the alert even though the access is authorized and expected.src_ip: 10.20.5.0/24 OR user_agent:*ThreatHuntService*).Scenario: Automated Browser Extension Updates
UpdateExtension) and are legitimate maintenance activities that mimic malicious URL access patterns.process_name: msedge.exe OR app_name: Google Chrome) where the destination URL contains a known update path pattern, such as /update/manifest.json or /extension/update.Scenario: Third-Party Cloud Backup Synchronization