This hunt detects adversary activity involving the Mozi malware family by identifying network traffic to a curated set of 15 known malicious URLs associated with its command and control infrastructure. Proactively hunting for these indicators in Azure Sentinel is critical due to the high severity of Mozi’s potential impact, allowing the SOC team to rapidly isolate compromised endpoints before lateral movement or data exfiltration occurs.
Threat: Mozi Total URLs: 15 Active URLs: 14
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://61.53.120.157:38424/i | online | malware_download | 2026-08-20 |
hxxp://61.53.120.157:38424/bin.sh | online | malware_download | 2026-08-20 |
hxxp://123.12.177.12:56227/i | online | malware_download | 2026-08-20 |
hxxp://123.9.195.116:34313/bin.sh | online | malware_download | 2026-08-20 |
hxxp://115.57.212.220:54561/i | online | malware_download | 2026-08-20 |
hxxp://115.57.212.220:54561/bin.sh | online | malware_download | 2026-08-20 |
hxxp://59.96.139.113:60057/bin.sh | online | malware_download | 2026-08-20 |
hxxp://41.201.226.25:57585/i | online | malware_download | 2026-08-20 |
hxxp://115.51.4.93:56227/i | offline | malware_download | 2026-08-20 |
hxxp://115.62.135.216:60668/bin.sh | online | malware_download | 2026-08-20 |
hxxp://182.112.89.53:48165/i | online | malware_download | 2026-08-20 |
hxxp://182.112.89.53:48165/bin.sh | online | malware_download | 2026-08-20 |
hxxp://182.126.248.10:58244/i | online | malware_download | 2026-08-20 |
hxxp://182.113.44.60:34879/i | online | malware_download | 2026-08-20 |
hxxp://182.126.248.10:58244/bin.sh | online | malware_download | 2026-08-20 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["59.96.139.113", "182.112.89.53", "182.113.44.60", "61.53.120.157", "123.12.177.12", "123.9.195.116", "115.62.135.216", "182.126.248.10", "115.57.212.220", "41.201.226.25"]);
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(["59.96.139.113", "182.112.89.53", "182.113.44.60", "61.53.120.157", "123.12.177.12", "123.9.195.116", "115.62.135.216", "182.126.248.10", "115.57.212.220", "41.201.226.25"]);
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, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Security Scanning by EDR Agents
urlhaus.abusix.com API directly to validate local cache data, triggering hits against Mozi-tagged URLs that are part of their internal validation logic rather than user-initiated browsing.Process_Name matches FalconSensor.exe, MsMpEng.exe, or DefenderService.exe AND Logon_User is a service account (e.g., NT SERVICE\... or SYSTEM).Scenario: Scheduled Backup and Sync Operations
Source_User belongs to the Backup-Service-Accounts group or specific scheduled task accounts like VeeamBkpSvc.Scenario: IT Admin Manual Threat Intelligence Review