This detection identifies adversary activity involving the Mozi malware family by monitoring network traffic against a curated set of four known malicious URLs from URLhaus. Proactively hunting for these indicators in Azure Sentinel is critical to rapidly detect early-stage infections and prevent potential data exfiltration or lateral movement before the threat spreads across the enterprise environment.
Threat: Mozi Total URLs: 4 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://182.113.35.171:56533/i | online | malware_download | 2026-08-05 |
hxxp://115.63.54.54:51962/i | online | malware_download | 2026-08-05 |
hxxp://27.202.25.231:36878/bin.sh | online | malware_download | 2026-08-05 |
hxxp://112.242.20.4:47764/i | online | malware_download | 2026-08-05 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["115.63.54.54", "27.202.25.231", "182.113.35.171", "112.242.20.4"]);
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.63.54.54", "27.202.25.231", "182.113.35.171", "112.242.20.4"]);
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, along with targeted filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Security Scanner Probing
*.tenable.com, qualysguard.com) where the user agent contains keywords like “Nessus,” “Qualys,” or “Rapid7.” Additionally, filter out alerts where the source process is identified as a known security service executable (e.g., nessuscli.exe, qgagent.exe).Scenario: Admin Manual Threat Intelligence Research
urlhaus.abusix.com, mozi-security.com) and the source process is a standard browser (chrome.exe, msedge.exe).**Scenario: Automated Software