This hunt detects adversary activity involving the Mozi malware family by identifying traffic to six specific malicious URLs known to deliver this threat. A SOC team should proactively search for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before the malware establishes persistence or exfiltrates sensitive data.
Threat: Mozi Total URLs: 6 Active URLs: 6
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://125.44.53.29:47373/i | online | malware_download | 2026-07-31 |
hxxp://125.40.73.55:46856/i | online | malware_download | 2026-07-31 |
hxxp://123.8.8.31:44394/i | online | malware_download | 2026-07-31 |
hxxp://42.232.87.174:56714/i | online | malware_download | 2026-07-31 |
hxxp://221.15.191.128:42078/i | online | malware_download | 2026-07-31 |
hxxp://42.232.87.174:56714/bin.sh | online | malware_download | 2026-07-31 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["125.40.73.55", "221.15.191.128", "123.8.8.31", "42.232.87.174", "125.44.53.29"]);
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.40.73.55", "221.15.191.128", "123.8.8.31", "42.232.87.174", "125.44.53.29"]);
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 for the URLhaus: Mozi Malicious URLs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Vulnerability Scanning by Security Tools
10.50.20.0/24) and filter out traffic where the User-Agent contains “Tenable,” “Qualys,” or “Rapid7.”Scenario: Scheduled Backup and Cloud Sync Operations
svc-backup-01) or filter URLs containing vendor-specific domains such as .veeam.com, .azureedge.net, and .box.com if they are not flagged as malicious by the URLhaus feed.Scenario: Third-Party API Integration for HR and Finance