This hypothesis posits that adversaries are leveraging known Mirai botnet indicators to establish initial footholds or expand command-and-control infrastructure within the network perimeter. Proactive hunting in Azure Sentinel is critical because early detection of these specific IOCs enables the SOC team to isolate compromised assets before they can propagate lateral movement or launch large-scale DDoS attacks against internal resources.
Malware Family: Mirai Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 91[.]92[.]42[.]50:80 | botnet_cc | 2026-07-13 | 75% |
| ip:port | 103[.]130[.]215[.]73:80 | botnet_cc | 2026-07-13 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Mirai
let malicious_ips = dynamic(["91.92.42.50", "103.130.215.73"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["91.92.42.50", "103.130.215.73"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: Mirai IOCs detection rule in an enterprise environment, along with suggested filters and exclusions:
Network Scanning Infrastructure Activity
10.20.50.0/24) and destination ports associated with standard scan traffic. Additionally, exclude traffic where the user-agent string contains “Tenable” or “Qualys”.Automated Firmware Update Jobs
svc-firmware-updater) running on the patch management server (Microsoft SCCM or Ivanti). Filter by time-of-day constraints to only alert outside of standard maintenance windows (e.g., exclude 02:00–04:00 UTC) if