This hunt targets adversary behavior where compromised endpoints attempt to access known Mozi malware distribution URLs, indicating potential initial infection or command-and-control communication. Proactively hunting for these specific URL patterns in Azure Sentinel is critical because early detection of Mozi activity allows the SOC team to isolate affected assets before the malware establishes persistence and begins lateral movement across the network.
Threat: Mozi Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://110.36.30.112:38106/i | online | malware_download | 2026-07-03 |
hxxp://110.36.30.112:38106/bin.sh | online | malware_download | 2026-07-03 |
hxxp://61.52.159.219:49548/bin.sh | online | malware_download | 2026-07-03 |
hxxp://182.116.12.154:55908/i | online | malware_download | 2026-07-03 |
hxxp://182.116.12.154:55908/bin.sh | online | malware_download | 2026-07-03 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["61.52.159.219", "110.36.30.112", "182.116.12.154"]);
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(["61.52.159.219", "110.36.30.112", "182.116.12.154"]);
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 in an enterprise environment, along with recommended filters and exclusions:
Scheduled Security Scanner Updates
falcon-updater service account rather than user workstations.10.20.50.0/24) or specifically excludes the process names falcon-sensor.exe and sentinel-agent.exe.IT Asset Management & Discovery Scans
svc_lansweeper, svc_solarwinds) and filter out URLs containing known vendor domains (e.g., *.update.microsoft.com, *.adobe.io) if the source IP belongs to the internal management subnet.Automated Compliance Reporting Jobs