This hunt targets adversary behavior where attackers leverage Mozi-tagged malicious URLs to deliver payloads or conduct phishing campaigns within the Azure environment. Proactively hunting for these specific indicators in Azure Sentinel is critical because Mozi threats often represent sophisticated, targeted attacks that require immediate containment before they can establish persistence or exfiltrate sensitive data.
Threat: Mozi Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://182.127.4.27:43671/i | online | malware_download | 2026-07-08 |
hxxp://222.141.122.76:43722/i | online | malware_download | 2026-07-08 |
hxxp://123.5.158.194:57168/bin.sh | online | malware_download | 2026-07-08 |
hxxp://115.61.51.91:46415/i | online | malware_download | 2026-07-08 |
hxxp://115.55.177.183:36148/i | online | malware_download | 2026-07-08 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["115.55.177.183", "182.127.4.27", "222.141.122.76", "115.61.51.91", "123.5.158.194"]);
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.55.177.183", "182.127.4.27", "222.141.122.76", "115.61.51.91", "123.5.158.194"]);
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, including suggested filters and exclusions:
Endpoint Protection Policy Updates via Microsoft Defender for Endpoint
update.microsoft.com or specific CDN endpoints. If Mozi has flagged a newly rotated sub-domain of Microsoft’s content delivery network as suspicious due to shared IP reputation, legitimate agent traffic will trigger the rule across hundreds of machines simultaneously.NT AUTHORITY\SYSTEM or a dedicated GPO update user) accessing URLs containing *.update.microsoft.com or *.go.microsoft.com.Automated Software Supply Chain Scanning by JFrog Artifactory
svc-jenkins-build) accessing known artifact repository domains such as *.maven.org, *.npmjs.com, or specific internal mirror URLs defined in the supply chain policy.Enterprise SSO and Identity Federation Health Checks by Okta/Azure AD