This detection rule identifies adversary activity linked to the Mozi threat actor by monitoring specific Indicators of Compromise (IOCs) known to facilitate initial access and lateral movement within cloud environments. Proactively hunting for these IOCs in Azure Sentinel is critical due to Mozi’s high severity profile, enabling the SOC team to rapidly detect early-stage intrusions and mitigate potential data exfiltration before broader compromise occurs.
Malware Family: Mozi Total IOCs: 3 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://153[.]117[.]6[.]79:34093/Mozi.m | payload_delivery | 2026-08-22 | 75% |
| url | hxxp://115[.]48[.]134[.]112:38753/Mozi.m | payload_delivery | 2026-08-22 | 75% |
| url | hxxp://153[.]117[.]8[.]52:40632/Mozi.m | payload_delivery | 2026-08-22 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Mozi
let malicious_urls = dynamic(["http://153.117.6.79:34093/Mozi.m", "http://115.48.134.112:38753/Mozi.m", "http://153.117.8.52:40632/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 |
Here are 4 specific false positive scenarios for the ThreatFox: Mozi IOCs detection rule, along with targeted filters and exclusions suitable for an enterprise environment:
Scenario: Scheduled Endpoint Protection Scans
ImageName matching *FalconSensor.exe, *MsMpEng.exe, or *DefenderService.exe.Scenario: Automated Patch Management Deployment
ParentProcessName is ccmsetup.exe, IvantiAgent.exe, or wsappx.exe, and the CommandLine contains keywords such as “Update”, “Patch”, or specific deployment IDs associated with internal patching jobs.Scenario: Legitimate Cloud Backup Operations