This hypothesis detects adversary activity involving the Mozi malware family by identifying user or system interactions with known malicious URLs that facilitate initial infection and command-and-control communication. Proactively hunting for these indicators in Azure Sentinel is critical to rapidly isolate compromised endpoints before the malware establishes persistence and exfiltrates sensitive data from the environment.
Threat: Mozi Total URLs: 7 Active URLs: 7
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://115.49.200.94:49949/bin.sh | online | malware_download | 2026-07-22 |
hxxp://182.114.199.247:37976/bin.sh | online | malware_download | 2026-07-22 |
hxxp://42.232.57.246:60697/i | online | malware_download | 2026-07-22 |
hxxp://27.194.244.206:42513/i | online | malware_download | 2026-07-22 |
hxxp://27.194.244.206:42513/bin.sh | online | malware_download | 2026-07-22 |
hxxp://27.204.197.113:48129/i | online | malware_download | 2026-07-22 |
hxxp://110.36.27.209:46596/i | online | malware_download | 2026-07-22 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["42.232.57.246", "27.204.197.113", "115.49.200.94", "27.194.244.206", "110.36.27.209", "182.114.199.247"]);
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(["42.232.57.246", "27.204.197.113", "115.49.200.94", "27.194.244.206", "110.36.27.209", "182.114.199.247"]);
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 and their corresponding filters/exclusions for the URLhaus: Mozi Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Security Scanner Traffic
Tenable-Nessus or Qualys-Cloud-Agent).Scenario: Scheduled Cloud Backup & Synchronization Jobs
*.storage.azure.com or *.s3.amazonaws.com) which may overlap with the Mozi URL taxonomy, particularly when accessing API gateways for metadata retrieval.svc-backup-azure, svc-rubrik-agent) and filter out specific destination domains known to be part of the approved cloud infrastructure whitelist.Scenario: Third-Party SaaS Integration Webhooks