This hunt detects adversary activity involving the Mozi malware family by identifying traffic to known malicious URLs that facilitate initial infection and command-and-control communication. SOC teams should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints before the malware establishes persistence or exfiltrates sensitive data.
Threat: Mozi Total URLs: 9 Active URLs: 8
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://222.142.220.59:50033/bin.sh | online | malware_download | 2026-07-28 |
hxxp://222.137.85.152:55205/i | online | malware_download | 2026-07-28 |
hxxp://182.121.197.90:57398/i | offline | malware_download | 2026-07-28 |
hxxp://182.121.197.90:57398/bin.sh | online | malware_download | 2026-07-28 |
hxxp://222.137.85.152:55205/bin.sh | online | malware_download | 2026-07-28 |
hxxp://123.11.15.96:57440/bin.sh | online | malware_download | 2026-07-28 |
hxxp://178.66.229.151:47258/i | online | malware_download | 2026-07-28 |
hxxp://39.87.15.172:39137/i | online | malware_download | 2026-07-28 |
hxxp://178.66.229.151:47258/bin.sh | online | malware_download | 2026-07-28 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["39.87.15.172", "222.142.220.59", "182.121.197.90", "178.66.229.151", "222.137.85.152", "123.11.15.96"]);
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(["39.87.15.172", "222.142.220.59", "182.121.197.90", "178.66.229.151", "222.137.85.152", "123.11.15.96"]);
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 specific false positive scenarios for the URLhaus: Mozi Malicious URLs detection rule, along with targeted filters and exclusions:
Scenario: Automated Patch Management Scans via WSUS or SCCM
WSUS-Server01, SCCM-CAS) and the specific Process Name (wuauserv.exe or ccmexec.exe). Exclude traffic where the process is running under a trusted service account (e.g., NT SERVICE\WUAUSERV).Scenario: Scheduled Endpoint Protection Definition Updates
C:\Program Files\CrowdStrike\FalconSensor\csfalcon.exe or MsMpEng.exe) and restrict the alert to only trigger if the destination URL does not match known vendor update domains. Alternatively, exclude alerts where the User Context is a system account (e.g., SYSTEM, LOCAL SERVICE).**Scenario: Admin-