This detection rule identifies adversary activity linked to the Mozi threat actor by monitoring for three specific indicators of compromise (IOCs) within Azure Sentinel logs. A proactive hunt is essential because Mozi’s targeted campaigns often involve early-stage reconnaissance that may evade standard alerting, requiring manual correlation to prevent potential lateral movement and data exfiltration.
Malware Family: Mozi Total IOCs: 3 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://110[.]38[.]2[.]86:48915/Mozi.m | payload_delivery | 2026-08-21 | 75% |
| url | hxxp://39[.]34[.]140[.]102:40567/Mozi.a | payload_delivery | 2026-08-21 | 75% |
| url | hxxp://153[.]117[.]38[.]146:46962/Mozi.a | payload_delivery | 2026-08-21 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Mozi
let malicious_urls = dynamic(["http://110.38.2.86:48915/Mozi.m", "http://39.34.140.102:40567/Mozi.a", "http://153.117.38.146:46962/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 4 specific false positive scenarios for the ThreatFox: Mozi IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Antivirus Definition Updates via WSUS or SCCM
Antimalware Service Exec runs, it may download and hash files matching Mozi IOCs as part of a routine definition refresh.C:\Program Files\Microsoft Antimalware\Engine\* or C:\Windows\System32\usoc.dll. Additionally, filter alerts where the source IP belongs to the internal update server subnet (e.g., 10.50.x.x) and the process name contains “Antimalware” or “WUA”.Scenario: Third-Party Backup Agent Scanning
C:\Program Files\Veeam\Backup and Replication or C:\ProgramData\Rubrik. Configure the rule to ignore events where the parent process is vbrsvc.exe, rubrik-agent.exe, or commvault.cmd.Scenario: Developer CI/CD Pipeline Execution