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 because Mozi’s sophisticated attack patterns often target cloud infrastructure, requiring early identification to mitigate potential data exfiltration and lateral movement before full-scale impact occurs.
Malware Family: Mozi Total IOCs: 2 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://190[.]196[.]253[.]117:11933/Mozi.m | payload_delivery | 2026-08-13 | 75% |
| url | hxxp://103[.]174[.]243[.]203:54166/Mozi.m | payload_delivery | 2026-08-13 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Mozi
let malicious_urls = dynamic(["http://190.196.253.117:11933/Mozi.m", "http://103.174.243.203:54166/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 5 specific false positive scenarios for the ThreatFox: Mozi IOCs detection rule, along with targeted filters and exclusions to reduce noise in an enterprise environment:
Scenario: The Endpoint Detection and Response (EDR) agent on a build server initiates a connection to a public threat intelligence feed URL that matches a Mozi hash or domain.
build-server-01) and exclude traffic originating from the Tenable Nessus process ID (nsagent.exe or qualyspcapd) connecting to known public IP ranges associated with the feed provider.Scenario: A scheduled PowerShell script running on a Domain Controller queries an external API for threat data, triggering the Mozi IOC match.
UpdateThreatIntel.ps1 using Microsoft Defender for Endpoint APIs to sync custom indicators, which inadvertently matches a Mozi signature due to overlapping hash values in the shared dataset.powershell.exe and the parent process is TaskScheduler.exe, specifically when the script path contains \Scripts\ThreatIntel\. Additionally, filter by the specific scheduled task ID (e.g., UpdateThreatIntel_Daily).Scenario: A third-party Security Information and Event Management (SIEM) connector establishes a persistent connection to a cloud-based threat intelligence service.