This hunt hypothesis targets adversaries leveraging Mozi malware to establish persistent backdoor access through phishing campaigns that deliver malicious URLs for remote command execution and data exfiltration. Proactively hunting for these indicators in Azure Sentinel is critical because early detection of Mozi’s initial infection vector allows the SOC team to isolate compromised endpoints before attackers can execute lateral movement or sensitive data theft operations.
Threat: Mozi Total URLs: 8 Active URLs: 6
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://123.14.73.174:46201/i | online | malware_download | 2026-08-12 |
hxxp://123.14.73.174:46201/bin.sh | online | malware_download | 2026-08-12 |
hxxp://61.53.219.139:36865/i | online | malware_download | 2026-08-12 |
hxxp://61.53.219.139:36865/bin.sh | online | malware_download | 2026-08-12 |
hxxp://110.39.228.78:49446/i | offline | malware_download | 2026-08-12 |
hxxp://110.39.228.78:49446/bin.sh | offline | malware_download | 2026-08-12 |
hxxp://112.238.178.200:43963/i | online | malware_download | 2026-08-12 |
hxxp://42.235.6.8:58160/i | online | malware_download | 2026-08-12 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["123.14.73.174", "61.53.219.139", "112.238.178.200", "42.235.6.8"]);
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(["123.14.73.174", "61.53.219.139", "112.238.178.200", "42.235.6.8"]);
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 suitable for an enterprise environment:
Scenario: Automated Security Scanning by EDR Agents
Process Name and User Account. Exclude traffic where the process is C:\Program Files\CrowdStrike\csagent.exe (or equivalent EDR binary) running under the local system account (NT AUTHORITY\SYSTEM) or a dedicated service account.Scenario: Scheduled Phishing Simulation Campaigns
Source IP Range and URL Domain. Add the specific IP ranges of your internal security simulation platform (e.g., KnowBe4 CDN IPs) to an allow-list, or exclude URLs containing specific query parameters unique to the simulation tool (e.g., ?campaign_id=internal_test).Scenario: Third-Party Content Delivery Network (CDN) Caching