This detection rule identifies adversary activity involving the Mozi malware family by flagging network traffic to six known malicious URLs that facilitate command-and-control communication or payload delivery. A SOC team should proactively hunt for these indicators within Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before the malware establishes persistence on critical systems.
Threat: Mozi Total URLs: 6 Active URLs: 6
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://115.57.199.189:44029/i | online | malware_download | 2026-07-23 |
hxxp://110.37.76.64:57726/i | online | malware_download | 2026-07-23 |
hxxp://115.57.199.189:44029/bin.sh | online | malware_download | 2026-07-23 |
hxxp://110.37.76.64:57726/bin.sh | online | malware_download | 2026-07-23 |
hxxp://61.53.75.206:44584/i | online | malware_download | 2026-07-23 |
hxxp://42.235.80.131:51699/i | online | malware_download | 2026-07-23 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Mozi
let malicious_domains = dynamic(["110.37.76.64", "115.57.199.189", "42.235.80.131", "61.53.75.206"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc
// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["110.37.76.64", "115.57.199.189", "42.235.80.131", "61.53.75.206"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Scenario: Enterprise Antivirus Cloud Reputation Checks
Source Process Name IN ("FalconSensor.exe", "MsMpEng.exe", "SentinelOneAgent.exe") AND User Account IN ("SYSTEM", "LocalService").Scenario: Scheduled Security Information and Event Management (SIEM) Ingestion Jobs
Source Host IN ("SIEM-Ingest-01", "QRadar-Collector") AND Time Window BETWEEN 02:00 AND 04:00 (Server Local Time).Scenario: Automated Browser-Based Compliance Scanning