This hunt targets adversary behavior where compromised hosts initiate outbound connections to known Mozi malware command-and-control infrastructure via specific malicious URLs identified by URLhaus. Proactively hunting for these indicators in Azure Sentinel is critical because Mozi’s modular architecture allows it to pivot quickly across networks, making early detection of its initial communication essential to prevent lateral movement and data exfiltration before full infection occurs.
Threat: Mozi Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://219.157.233.184:51727/i | online | malware_download | 2026-07-19 |
hxxp://112.237.210.145:54894/i | online | malware_download | 2026-07-19 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["112.237.210.145", "219.157.233.184"]);
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.210.145", "219.157.233.184"]);
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 in an enterprise environment, along with suggested filters or exclusions:
Automated Software Supply Chain Updates via Package Managers
svc-chocolatey, WSUS-Update-Agent) accessing whitelisted vendor domains (e.g., *.microsoft.com, choco.org).IT Administration and Patch Management Tasks
User-Agent string containing specific administration tool signatures (e.g., SCCM-Client, Jamf-Pro) or exclude traffic from the “IT Operations” organizational unit (OU) accessing URLs with a high reputation score despite the Mozi tag.Scheduled Backup and Cloud Sync Jobs