This hypothesis posits that adversaries are leveraging known Mirai malware indicators to establish botnet infrastructure within our network by initiating specific outbound connections and DNS queries. Proactive hunting in Azure Sentinel is critical to identify these early-stage infections before they scale into large-scale distributed denial-of-service attacks or pivot laterally across cloud assets.
Malware Family: Mirai Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 94[.]154[.]43[.]12:92 | botnet_cc | 2026-07-04 | 100% |
| ip:port | 103[.]253[.]212[.]175:6621 | botnet_cc | 2026-07-04 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Mirai
let malicious_ips = dynamic(["94.154.43.12", "103.253.212.175"]);
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(["94.154.43.12", "103.253.212.175"]);
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:
IoT Device Firmware Updates via Management Console
VLAN-IoT-Prod) and destination IPs belonging to verified vendor update servers (e.g., *.cisco.com, *.arubanetworks.com). Additionally, filter for traffic occurring only during scheduled maintenance windows defined in the ITSM tool.Network Scanning by Vulnerability Assessment Tools
10.20.30.50 for Nessus) and restrict the detection logic to exclude traffic where the destination port is 80 or 443 during known scan execution times (e.g., Sundays between 02:00–06:00 UTC).Security Information and Event Management (SIEM) Threat Intelligence Feeds