This hunt detects adversary activity involving traffic to known Mozi malware distribution URLs, which are frequently used in supply chain attacks and drive-by downloads to compromise endpoints. A SOC team should proactively hunt for these indicators in Azure Sentinel to identify early-stage infections before the malware executes its persistence mechanisms or lateral movement capabilities within the network.
Threat: Mozi Total URLs: 7 Active URLs: 7
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://42.235.183.167:47451/i | online | malware_download | 2026-08-21 |
hxxp://221.15.214.165:40665/i | online | malware_download | 2026-08-21 |
hxxp://105.158.197.238:53233/i | online | malware_download | 2026-08-21 |
hxxp://105.158.197.238:53233/bin.sh | online | malware_download | 2026-08-21 |
hxxp://123.8.162.45:59164/bin.sh | online | malware_download | 2026-08-21 |
hxxp://222.138.117.213:54917/bin.sh | online | malware_download | 2026-08-21 |
hxxp://59.180.144.211:51836/bin.sh | online | malware_download | 2026-08-21 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["222.138.117.213", "221.15.214.165", "42.235.183.167", "123.8.162.45", "105.158.197.238", "59.180.144.211"]);
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.117.213", "221.15.214.165", "42.235.183.167", "123.8.162.45", "105.158.197.238", "59.180.144.211"]);
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 Security Scanner Traffic
10.20.50.0/24 for Tenable scanners) or filter out events where the user agent string contains specific keywords like “Tenable-Nessus” or “QualysCloudAgent”.Scenario: Scheduled Cloud Backup and Sync Operations
Scheduled Job name (e.g., “Nightly Cloud Sync”) and exclude traffic from backup service accounts (e.g., svc-backup-agent) during defined maintenance windows (e.g., 02:00–04:00 UTC).Scenario: Developer CI/CD Pipeline Artifacts