This hypothesis targets the presence of Mozi botnet indicators, a prevalent Linux-based malware family known for establishing persistent backdoors and facilitating distributed denial-of-service attacks. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify compromised endpoints early, preventing lateral movement and ensuring rapid containment before the botnet can be leveraged for large-scale attacks.
Malware Family: Mozi Total IOCs: 2 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://190[.]196[.]253[.]43:11724/Mozi.m | payload_delivery | 2026-09-24 | 75% |
| url | hxxp://103[.]26[.]83[.]108:55431/Mozi.m | payload_delivery | 2026-09-24 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Mozi
let malicious_urls = dynamic(["http://190.196.253.43:11724/Mozi.m", "http://103.26.83.108:55431/Mozi.m"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
UrlClickEvents | Ensure this data connector is enabled |
Scenario: Automated Patch Management and Cleanup
SCCMClient, AnsibleService) or exclude file paths under standard staging directories like C:\Windows\CCM\ or C:\ProgramData\Ansible\. Additionally, whitelist specific executable names used by the patching tool (e.g., ccmsetup.exe, ansible-playbook).Scenario: Developer Build Artifacts and CI/CD Pipelines
update.exe, install.bin) or specific SHA256 hashes that happen to match a legitimate build artifact or a dependency library, the rule will trigger.jenkins, gitlab-runner, vstsagent) or exclude file paths within workspace directories (e.g., C:\Jenkins\workspace\, C:\gitlab-runner\builds\). Whitelist known build tools like msbuild.exe, dotnet.exe, or java.exe when they are the parent process.