This hunt targets adversaries leveraging the Mozi backdoor to establish persistent access and exfiltrate sensitive data through malicious URLs identified by URLhaus. Proactively searching for these indicators in Azure Sentinel is critical to detect early-stage espionage campaigns before they compromise internal assets or expand their foothold within the network.
Threat: Mozi Total URLs: 6 Active URLs: 6
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://123.12.234.194:36402/i | online | malware_download | 2026-07-18 |
hxxp://123.12.234.194:36402/bin.sh | online | malware_download | 2026-07-18 |
hxxp://182.113.45.51:57826/i | online | malware_download | 2026-07-18 |
hxxp://61.52.172.124:56962/bin.sh | online | malware_download | 2026-07-18 |
hxxp://110.37.127.45:52145/i | online | malware_download | 2026-07-18 |
hxxp://112.237.10.53:36676/i | online | malware_download | 2026-07-18 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["112.237.10.53", "123.12.234.194", "110.37.127.45", "61.52.172.124", "182.113.45.51"]);
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(["112.237.10.53", "123.12.234.194", "110.37.127.45", "61.52.172.124", "182.113.45.51"]);
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, tailored for an enterprise environment:
Software Supply Chain Updates via Centralized Patch Management
svc-patch-manager) rather than an interactive user session.Automated Security Scanning by Endpoint Protection Agents
svc-edr-agent) and filter on specific Destination Ports commonly used for feed updates (e.g., 80, 443) combined with a high-frequency threshold