This detection rule identifies adversary activity linked to the Mozi threat actor by matching network and endpoint telemetry against three specific Indicators of Compromise (IOCs). Proactive hunting for these signals in Azure Sentinel is critical because Mozi’s sophisticated supply chain attacks often exhibit low initial visibility, requiring early intervention to prevent lateral movement within the enterprise environment.
Malware Family: Mozi Total IOCs: 3 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://36[.]255[.]44[.]120:59604/Mozi.m | payload_delivery | 2026-08-25 | 75% |
| url | hxxp://153[.]117[.]46[.]172:51188/Mozi.m | payload_delivery | 2026-08-25 | 75% |
| url | hxxp://39[.]86[.]251[.]237:54344/Mozi.a | payload_delivery | 2026-08-25 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Mozi
let malicious_urls = dynamic(["http://36.255.44.120:59604/Mozi.m", "http://153.117.46.172:51188/Mozi.m", "http://39.86.251.237:54344/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, along with targeted filters and exclusions suitable for an enterprise environment:
Scenario: Legitimate Endpoint Protection Scans
ProcessName matches known EDR agents (e.g., FalconSensor.exe, MsMpEng.exe) AND UserName is a system account (e.g., NT AUTHORITY\SYSTEM or DOMAIN\AdminService).Scenario: Scheduled Backup and Archiving Jobs
01:00 and 04:00 on weekdays where the ProcessName matches backup agents (e.g., vss.exe, rubrik-agent) and the CommandLine contains specific keywords like “backup” or “archive”.Scenario: Software Deployment via Configuration Management