This hunt targets the presence of known Mozi botnet URLs, which adversaries use to establish command-and-control channels or deliver payloads to compromised hosts. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify potentially infected endpoints or web proxies before the botnet can propagate laterally or execute malicious tasks within the environment.
Threat: Mozi Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://98.252.87.232:40235/i | online | malware_download | 2026-09-02 |
hxxp://98.252.87.232:40235/bin.sh | online | malware_download | 2026-09-02 |
hxxp://27.215.84.127:37282/i | online | malware_download | 2026-09-02 |
hxxp://27.215.84.127:37282/bin.sh | online | malware_download | 2026-09-02 |
hxxp://42.224.7.191:56165/i | online | malware_download | 2026-09-02 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["42.224.7.191", "98.252.87.232", "27.215.84.127"]);
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(["42.224.7.191", "98.252.87.232", "27.215.84.127"]);
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 |
Automated Patch Management and Update Verification
CcmExec.exe, Ansible.exe, or PowerShell.exe with specific command-line arguments related to updates) and the destination port is 443/80. Alternatively, whitelist the specific IP addresses associated with the internal patch distribution server if the URLs resolve to internal infrastructure.CI/CD Pipeline Artifact Downloading
jenkins-agent.exe, gitlab-runner, azure-pipelines-agent) when the destination URL matches the Mozi list and the source machine is identified as a build server or CI/CD node in the asset inventory.Scheduled Data Backup or Sync Jobs
rsync/