This detection rule identifies adversary activity linked to the Mozi malware campaign by monitoring five specific Indicators of Compromise (IOCs) within Azure Sentinel logs. Proactive hunting for these signals is essential to rapidly detect early-stage infections and mitigate potential lateral movement or data exfiltration before they escalate into a broader incident.
Malware Family: Mozi Total IOCs: 5 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://27[.]202[.]57[.]233:59905/Mozi.m | payload_delivery | 2026-07-28 | 75% |
| url | hxxp://14[.]1[.]106[.]91:54093/Mozi.m | payload_delivery | 2026-07-28 | 75% |
| url | hxxp://182[.]112[.]30[.]222:60319/Mozi.m | payload_delivery | 2026-07-28 | 75% |
| url | hxxp://139[.]135[.]44[.]17:33905/Mozi.m | payload_delivery | 2026-07-28 | 75% |
| url | hxxp://14[.]1[.]106[.]10:37095/Mozi.m | payload_delivery | 2026-07-28 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Mozi
let malicious_urls = dynamic(["http://27.202.57.233:59905/Mozi.m", "http://14.1.106.91:54093/Mozi.m", "http://182.112.30.222:60319/Mozi.m", "http://139.135.44.17:33905/Mozi.m", "http://14.1.106.10:37095/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 3-5 specific false positive scenarios for the ThreatFox: Mozi IOCs detection rule, tailored for an enterprise environment:
Scenario: Security Team Manual Threat Hunting Queries
siem_query_service.exe or user accounts belonging to the SOC_Analysts security group (e.g., CN=Security_Hunt_Team). Additionally, exclude events where the event type is “Query Execution” rather than “Process Creation.”Scenario: Scheduled Endpoint Vulnerability Scans
tenable_agent.exe or qualys_pc_agent.exe. Implement a time-based filter to suppress alerts during known maintenance windows (e.g., 02:00–04:00 UTC daily) when these scans are typically executed.Scenario: Automated Patch Management Deployments