This hunt targets adversaries leveraging Mozi malware to establish command and control channels via known malicious URLs, which often serve as initial infection vectors or persistence mechanisms within cloud workloads. Proactively hunting for these specific indicators in Azure Sentinel is critical because early detection of Mozi-tagged traffic allows the SOC team to isolate compromised assets before lateral movement occurs across the tenant environment.
Threat: Mozi Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://182.121.108.126:43885/i | online | malware_download | 2026-07-21 |
hxxp://115.48.133.253:34024/i | online | malware_download | 2026-07-21 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["115.48.133.253", "182.121.108.126"]);
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(["115.48.133.253", "182.121.108.126"]);
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 in an enterprise environment, along with suggested filters or exclusions:
Legacy Software License Verification
*.license.sap.com), provided the user agent string matches the legacy application version and no file downloads occur during the session.Automated Patch Management Scans
svc-patch-agent) and destination ports commonly used for patching (80/443) during defined maintenance windows (e.g., 2:00 AM – 5:00 AM local time), ensuring the HTTP method is limited to GET or HEAD.Cloud Backup Agent Connectivity Checks