This hunt targets adversary behavior where threat actors leverage compromised or newly registered domains associated with the Mozi malware to deliver malicious payloads via web traffic. Proactively hunting these specific URL patterns in Azure Sentinel is critical because it enables the SOC team to identify early-stage infection vectors and block lateral movement before the malware establishes persistence across the enterprise network.
Threat: Mozi Total URLs: 7 Active URLs: 7
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://112.246.11.204:57516/bin.sh | online | malware_download | 2026-07-11 |
hxxp://222.138.126.62:36254/bin.sh | online | malware_download | 2026-07-11 |
hxxp://115.57.255.73:39772/i | online | malware_download | 2026-07-11 |
hxxp://60.214.58.128:50647/i | online | malware_download | 2026-07-11 |
hxxp://219.157.179.136:44096/i | online | malware_download | 2026-07-11 |
hxxp://110.37.13.213:43668/bin.sh | online | malware_download | 2026-07-11 |
hxxp://219.157.179.136:44096/bin.sh | online | malware_download | 2026-07-11 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["222.138.126.62", "110.37.13.213", "60.214.58.128", "112.246.11.204", "219.157.179.136", "115.57.255.73"]);
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(["222.138.126.62", "110.37.13.213", "60.214.58.128", "112.246.11.204", "219.157.179.136", "115.57.255.73"]);
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, along with suggested filters or exclusions:
Endpoint Protection Management Console Scans
falcon.sys, SensAgent.exe) or the User Account (e.g., DOMAIN\svc-endpoint-mgmt). Additionally, exclude traffic originating from the specific IP range of the internal management server.Automated Software Patching and Inventory Jobs
ansible-runner.exe, ccmexec.exe) and the destination domain belongs to approved vendor whitelists (e.g., *.microsoft.com, *.oracle.com).Browser-Based Security Awareness Training and Phishing Simulations