This hunt targets adversaries leveraging Mozi malware to execute malicious downloads or phishing campaigns via a known set of ten suspicious URLs identified by URLhaus. Proactively hunting for these indicators in Azure Sentinel is critical because early detection of Mozi activity enables rapid containment before the threat establishes persistence or exfiltrates sensitive data from cloud workloads.
Threat: Mozi Total URLs: 10 Active URLs: 10
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://42.238.170.65:54036/i | online | malware_download | 2026-07-01 |
hxxp://182.113.40.220:47427/i | online | malware_download | 2026-07-01 |
hxxp://27.206.189.240:58978/i | online | malware_download | 2026-07-01 |
hxxp://115.57.243.240:39118/i | online | malware_download | 2026-07-01 |
hxxp://115.57.243.240:39118/bin.sh | online | malware_download | 2026-07-01 |
hxxp://115.48.11.72:56497/i | online | malware_download | 2026-07-01 |
hxxp://115.55.217.5:52830/i | online | malware_download | 2026-07-01 |
hxxp://125.40.115.195:49809/i | online | malware_download | 2026-07-01 |
hxxp://115.48.11.72:56497/bin.sh | online | malware_download | 2026-07-01 |
hxxp://115.55.217.5:52830/bin.sh | online | malware_download | 2026-07-01 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["27.206.189.240", "125.40.115.195", "42.238.170.65", "182.113.40.220", "115.55.217.5", "115.57.243.240", "115.48.11.72"]);
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(["27.206.189.240", "125.40.115.195", "42.238.170.65", "182.113.40.220", "115.55.217.5", "115.57.243.240", "115.48.11.72"]);
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 4 specific false positive scenarios for the URLhaus: Mozi Malicious URLs detection rule in an enterprise environment, along with targeted filtering strategies:
Endpoint Security Agent Self-Updates and Telemetry
C:\Program Files\CrowdStrike\fs.exe, MsMpEng.exe) connecting to known vendor update domains (e.g., *.crowdstrike.com, *.microsoft.com). Additionally, whitelist the specific SHA-256 hashes of these legitimate executables in the detection logic.IT Admin Patch Management and Software Deployment
DOMAIN\svc-patch-deploy) that are known to perform these bulk download operations.**Corporate Web