This hunt detects adversary behavior where endpoints access known Mozi malware distribution channels via specific malicious URLs identified by URLhaus. The SOC team should proactively investigate these connections in Azure Sentinel to identify early-stage infections and prevent lateral movement before the ransomware payload executes.
Threat: Mozi Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://103.31.103.204:46574/i | online | malware_download | 2026-07-10 |
hxxp://112.248.255.206:40693/i | online | malware_download | 2026-07-09 |
hxxp://125.41.7.156:54523/i | online | malware_download | 2026-07-09 |
hxxp://125.41.7.156:54523/bin.sh | online | malware_download | 2026-07-09 |
hxxp://125.47.238.167:35702/i | online | malware_download | 2026-07-09 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["112.248.255.206", "125.47.238.167", "103.31.103.204", "125.41.7.156"]);
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(["112.248.255.206", "125.47.238.167", "103.31.103.204", "125.41.7.156"]);
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 in an enterprise environment, along with recommended filters or exclusions:
Security Team Phishing Simulation Campaigns
KnowBe4-Sim or Proofpoint-Phish.Automated Vulnerability Scanning and Patch Management
svc-qualys-scanner, intune-agent) and apply a time-based filter to suppress alerts for these sources during the defined maintenance window.IT Admin Access to Cloud Management Portals