This detection identifies adversary activity where the Mozi backdoor establishes persistence by executing remote commands and exfiltrating sensitive data through malicious URLs. A proactive hunt in Azure Sentinel is critical to immediately isolate compromised endpoints and prevent lateral movement before attackers can leverage this backdoor for long-term access or data theft.
Threat: Mozi Total URLs: 10 Active URLs: 10
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://39.90.150.62:51319/i | online | malware_download | 2026-08-15 |
hxxp://110.38.223.172:43584/i | online | malware_download | 2026-08-15 |
hxxp://39.90.150.62:51319/bin.sh | online | malware_download | 2026-08-15 |
hxxp://182.121.231.159:45731/i | online | malware_download | 2026-08-15 |
hxxp://182.121.231.159:45731/bin.sh | online | malware_download | 2026-08-15 |
hxxp://182.117.30.230:43216/i | online | malware_download | 2026-08-15 |
hxxp://182.117.30.230:43216/bin.sh | online | malware_download | 2026-08-15 |
hxxp://27.215.124.43:44400/i | online | malware_download | 2026-08-15 |
hxxp://27.215.124.43:44400/bin.sh | online | malware_download | 2026-08-15 |
hxxp://182.116.113.206:54138/bin.sh | online | malware_download | 2026-08-15 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["27.215.124.43", "182.116.113.206", "39.90.150.62", "110.38.223.172", "182.117.30.230", "182.121.231.159"]);
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.215.124.43", "182.116.113.206", "39.90.150.62", "110.38.223.172", "182.117.30.230", "182.121.231.159"]);
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, tailored for a legitimate enterprise environment:
Scenario: Automated Security Scanner Traffic
nessus.exe, qualyspcd.exe). Exclude traffic where the process is running under the system account (SYSTEM) and the destination URL does not match high-risk Mozi indicators.Scenario: Cloud Backup and Synchronization Agents
OneDrive.exe, Dropbox.exe) and exclude URLs containing known cloud storage domains (e.g., *.sharepoint.com, *.dropboxapi.com). Additionally, verify that the connection is initiated by a scheduled task rather than user interaction.Scenario: Scheduled Patch Management Deployments