This hunt targets adversary behavior where threat actors leverage specific Mozi-malicious URLs to deliver payloads or conduct phishing campaigns against Azure-connected endpoints. Proactively hunting these indicators in Azure Sentinel is critical because early detection of these known malicious domains can prevent lateral movement and data exfiltration before the broader Mozi campaign impacts the organization’s cloud infrastructure.
Threat: Mozi Total URLs: 9 Active URLs: 9
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://42.227.185.241:58452/i | online | malware_download | 2026-06-28 |
hxxp://219.157.132.212:55822/i | online | malware_download | 2026-06-28 |
hxxp://123.14.250.205:49430/i | online | malware_download | 2026-06-28 |
hxxp://123.14.33.167:45552/i | online | malware_download | 2026-06-28 |
hxxp://219.157.132.212:55822/bin.sh | online | malware_download | 2026-06-28 |
hxxp://123.14.250.205:49430/bin.sh | online | malware_download | 2026-06-28 |
hxxp://124.29.223.148:56976/i | online | malware_download | 2026-06-28 |
hxxp://123.14.216.150:33294/bin.sh | online | malware_download | 2026-06-28 |
hxxp://124.29.223.148:56976/bin.sh | online | malware_download | 2026-06-28 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["123.14.216.150", "42.227.185.241", "219.157.132.212", "124.29.223.148", "123.14.33.167", "123.14.250.205"]);
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(["123.14.216.150", "42.227.185.241", "219.157.132.212", "124.29.223.148", "123.14.33.167", "123.14.250.205"]);
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 specific false positive scenarios for the URLhaus: Mozi Malicious URLs detection rule, tailored for an enterprise environment:
Scheduled Software Updates via Patch Management Tools
ccmexec.exe, IvantiAgentService.exe) combined with a whitelist of known vendor domains (e.g., *.adobe.com, *.oracle.com) that are currently flagged by URLhaus but verified as safe in your internal threat intelligence feed.Admin-Initiated Security Tool Configuration Syncs
svc-security-updates, admin-sync) and targeting specific User-Agent strings associated with the security vendor’s internal update clients, provided the destination IP belongs to the vendor’s known ASN range.