This hunt targets adversary activity where compromised endpoints establish outbound connections to known malicious URLs associated with the Mozi malware family, indicating potential backdoor installation for command-and-control communication and data exfiltration. Proactively hunting for these specific URL patterns in Azure Sentinel is critical because early detection of Mozi’s C2 channels allows the SOC team to isolate infected assets before sensitive data is fully extracted or lateral movement occurs within the network.
Threat: Mozi Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://115.62.58.252:55568/bin.sh | online | malware_download | 2026-07-14 |
hxxp://42.228.36.34:52410/i | online | malware_download | 2026-07-14 |
hxxp://59.103.116.68:53661/bin.sh | online | malware_download | 2026-07-14 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["59.103.116.68", "42.228.36.34", "115.62.58.252"]);
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.103.116.68", "42.228.36.34", "115.62.58.252"]);
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 suggested filters or exclusions:
IT Asset Management & Patch Deployment Scans
svc-patch-deploy, agent-scanner) and restrict the rule to exclude traffic destined for known internal IP ranges or whitelisted vendor domains (e.g., *.microsoft.com, *.solarwinds.com).Automated Compliance & Security Scanning Jobs
02:00 - 04:00 UTC) and filter out traffic where the User-Agent string contains specific scanner identifiers (e.g., containing “Nessus”, “QualysAgent”, or “InsightVM”).Software Supply Chain & Dependency Updates