This hunt hypothesis targets adversary behavior where threat actors leverage Mozi-malicious URLs to deliver payloads or redirect users to phishing campaigns designed to compromise Azure workloads. A SOC team should proactively hunt for these specific indicators in Azure Sentinel to rapidly identify and isolate potential lateral movement or initial access vectors before they escalate into broader security incidents.
Threat: Mozi Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://115.50.95.179:56165/i | online | malware_download | 2026-08-30 |
hxxp://125.47.228.36:48346/i | online | malware_download | 2026-08-30 |
hxxp://125.47.228.36:48346/bin.sh | online | malware_download | 2026-08-30 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["125.47.228.36", "115.50.95.179"]);
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(["125.47.228.36", "115.50.95.179"]);
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 and corresponding filters for the URLhaus: Mozi Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Vulnerability Scanning by Security Tools
nessus.exe, qualyspcapd.exe) or restrict the rule to exclude traffic originating from dedicated “Security Scanning” IP subnets.Scenario: Scheduled Backup and Sync Operations
VeeamBackup.exe, azurbackupagent) occurring within defined maintenance windows (e.g., 02:00–06:00 local time) to reduce noise during routine synchronization cycles.Scenario: Software Update and Patch Management