This detection identifies adversary activity involving the Mozi malware family by monitoring network traffic against a curated list of nine known malicious URLs from URLhaus. A proactive hunt is essential in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before attackers can establish persistence or exfiltrate sensitive data through these specific command-and-control channels.
Threat: Mozi Total URLs: 9 Active URLs: 9
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://182.115.185.8:58576/i | online | malware_download | 2026-07-29 |
hxxp://110.37.64.31:60162/bin.sh | online | malware_download | 2026-07-29 |
hxxp://219.157.51.222:34177/i | online | malware_download | 2026-07-29 |
hxxp://182.118.244.55:36915/i | online | malware_download | 2026-07-29 |
hxxp://182.118.244.55:36915/bin.sh | online | malware_download | 2026-07-29 |
hxxp://182.121.204.65:58922/i | online | malware_download | 2026-07-29 |
hxxp://182.121.204.65:58922/bin.sh | online | malware_download | 2026-07-29 |
hxxp://123.12.229.234:36096/i | online | malware_download | 2026-07-29 |
hxxp://182.116.38.123:33625/i | online | malware_download | 2026-07-29 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["182.118.244.55", "110.37.64.31", "182.121.204.65", "219.157.51.222", "182.116.38.123", "182.115.185.8", "123.12.229.234"]);
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(["182.118.244.55", "110.37.64.31", "182.121.204.65", "219.157.51.222", "182.116.38.123", "182.115.185.8", "123.12.229.234"]);
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 recommended filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Antivirus Definition Updates
10.20.x.x) destined for known vendor update domains (e.g., *.crowdstrike.com, *.microsoft.com). Additionally, exclude events occurring during the defined maintenance window (e.g., 02:00–04:00 UTC) where these updates are triggered.Scenario: Admin-Driven Security Policy Deployment
Source User attribute, filtering out traffic initiated by service accounts such as svc-qualys-deploy or admin-policy-bot. Alternatively, exclude events where the Process Name is identified as TenableAgent.exe or QualysPCClient.exe during policy push windows.Scenario: Cloud Backup and Archiving Jobs