This detection identifies adversary activity where users or systems interact with malicious URLs associated with the Mozi malware campaign, which is known to deliver payloads that compromise endpoint integrity and exfiltrate sensitive data. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate affected assets and prevent lateral movement before the malware establishes persistence within the network environment.
Threat: Mozi Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://115.57.15.114:52782/bin.sh | online | malware_download | 2026-08-04 |
hxxp://115.63.189.195:55987/bin.sh | online | malware_download | 2026-08-04 |
hxxp://27.215.121.130:42924/i | online | malware_download | 2026-08-04 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["115.63.189.195", "27.215.121.130", "115.57.15.114"]);
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.189.195", "27.215.121.130", "115.57.15.114"]);
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, along with targeted filtering strategies:
Scenario: Automated Security Tool Updates via Cloud Repositories
*.falcon.crowdstrike.com, *.sentinelone.net). Additionally, exclude traffic originating from the “System” account on servers running these agents during scheduled maintenance windows.Scenario: Scheduled Backup and Archiving Jobs
svc-veeam-backup, AcronisService) and filter out URLs containing known backup vendor subdomains (e.g., *.rubrik.com, *.acronis.cloud). Implement a time-based exclusion to ignore alerts from these sources outside of business hours if the jobs are strictly scheduled.**Scenario: Legitimate Third