This detection rule identifies adversary activity linked to the Mozi threat actor by monitoring specific Indicators of Compromise (IOCs) within Azure Sentinel logs. Proactive hunting for these signals is critical due to their high severity, enabling the SOC team to rapidly detect and respond to potential early-stage intrusions before they escalate into broader compromises.
Malware Family: Mozi Total IOCs: 2 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://125[.]45[.]57[.]193:59157/Mozi.m | payload_delivery | 2026-07-30 | 75% |
| url | hxxp://72[.]255[.]33[.]15:59765/Mozi.m | payload_delivery | 2026-07-30 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Mozi
let malicious_urls = dynamic(["http://125.45.57.193:59157/Mozi.m", "http://72.255.33.15:59765/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 specific false positive scenarios for the ThreatFox: Mozi IOCs detection rule, including targeted filters and exclusions to reduce noise in an enterprise environment:
Scenario: Scheduled Antivirus or EDR Full Scans
svc-crowdscan, defender-svc) where the destination port corresponds to the threat intelligence update channel (typically TCP 443) and the user agent string contains “Mozi-Feed-Sync”.Scenario: Automated Patch Management Deployment
Process Name matching known patching executables (e.g., ccmsetup.exe, ivanti-agent.exe) and restrict the alert to only trigger if the process is running under a non-admin user context, as legitimate patch deployments usually run under system or local admin accounts.Scenario: Third-Party Threat Intelligence Feed Integration