This detection rule identifies adversary activity linked to the Mozi threat by matching four specific Indicators of Compromise (IOCs) within Azure Sentinel logs. Proactively hunting for these signals is critical because Mozi represents a sophisticated threat actor capable of stealthy lateral movement, requiring early intervention to prevent potential data exfiltration or system compromise before full-scale engagement occurs.
Malware Family: Mozi Total IOCs: 4 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://153[.]117[.]32[.]130:49657/Mozi.a | payload_delivery | 2026-08-31 | 75% |
| url | hxxp://175[.]107[.]3[.]244:55339/Mozi[.]7 | payload_delivery | 2026-08-31 | 75% |
| url | hxxp://124[.]94[.]244[.]212:33038/Mozi.a | payload_delivery | 2026-08-31 | 75% |
| url | hxxp://203[.]101[.]186[.]212:33774/Mozi.a | payload_delivery | 2026-08-31 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Mozi
let malicious_urls = dynamic(["http://153.117.32.130:49657/Mozi.a", "http://175.107.3.244:55339/Mozi.7", "http://124.94.244.212:33038/Mozi.a", "http://203.101.186.212:33774/Mozi.a"]);
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 3-5 specific false positive scenarios for the ThreatFox: Mozi IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Endpoint Protection Scans
MsMpEng.exe, FalconSensorService.exe) connecting to specific vendor update domains (e.g., *.microsoft.com, *.crowdstrike.com). Alternatively, filter out alerts where the source IP is a known internal management server.Scenario: Admin-Initiated Patch Deployment via SCCM
ccmexec.exe process during standard maintenance windows (e.g., 02:00–04:00 local time). Additionally, whitelist distribution point IP ranges and SCCM management points from the detection logic.Scenario: Legacy Application Data Synchronization