This hunt targets adversaries leveraging Mozi malware to establish command-and-control channels via known malicious web endpoints, enabling initial infection or lateral movement. Proactively hunting these specific URL patterns in Azure Sentinel is critical because early detection of Mozi traffic allows SOC teams to isolate compromised assets before the malware executes its full payload and exfiltrates sensitive data.
Threat: Mozi Total URLs: 6 Active URLs: 6
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://115.56.102.218:44950/i | online | malware_download | 2026-06-29 |
hxxp://115.54.121.49:59905/i | online | malware_download | 2026-06-29 |
hxxp://61.52.37.247:54710/i | online | malware_download | 2026-06-29 |
hxxp://61.52.37.247:54710/bin.sh | online | malware_download | 2026-06-29 |
hxxp://222.137.80.156:43412/i | online | malware_download | 2026-06-29 |
hxxp://125.45.9.133:43611/i | online | malware_download | 2026-06-29 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["115.54.121.49", "222.137.80.156", "61.52.37.247", "125.45.9.133", "115.56.102.218"]);
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.54.121.49", "222.137.80.156", "61.52.37.247", "125.45.9.133", "115.56.102.218"]);
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 for the URLhaus: Mozi Malicious URLs detection rule in an enterprise environment, along with recommended filters or exclusions:
Automated Software Update Scans by Endpoint Protection Agents
C:\Program Files\CrowdStrike\FalconSensor.exe or MsMpEng.exe) and restrict the alert to exclude traffic originating from the specific Internal IP Subnet of the Endpoint Management Servers.Scheduled Vulnerability Scans by Network Security Appliances
svc-tenable-scan or qualys-agent) and the Destination Port matches standard scanning ports, specifically during the scheduled maintenance window (e.g., 02:00–04:00 UTC).IT Administration Tasks Involving Threat Intelligence Dashboards