← Back to SOC feed Coverage →

URLhaus: mirai Malicious URLs

ioc-hunt HIGH URLhaus
CommonSecurityLogDnsEvents
iocurlhaus
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at URLhaus →
Retrieved: 2026-09-26T11:00:00Z · Confidence: medium

Hunt Hypothesis

This rule identifies network traffic or web proxy logs containing known malicious URLs associated with the Mirai botnet, indicating potential active compromise or lateral movement attempts by IoT-focused malware. Proactively hunting for these indicators in Azure Sentinel is critical because Mirai often propagates rapidly across unpatched devices, allowing the SOC to isolate affected assets before the botnet can be leveraged for large-scale DDoS attacks or further payload delivery.

IOC Summary

Threat: mirai Total URLs: 17 Active URLs: 17

URLStatusThreatDate Added
hxxp://58.65.210.132:43061/ionlinemalware_download2026-09-26
hxxp://170.84.133.234:43404/ionlinemalware_download2026-09-26
hxxp://171.36.9.93:44768/ionlinemalware_download2026-09-26
hxxp://87.13.96.192:60253/ionlinemalware_download2026-09-26
hxxp://181.174.231.21:34154/ionlinemalware_download2026-09-26
hxxp://120.28.193.113:38804/ionlinemalware_download2026-09-26
hxxp://105.224.38.185:36505/ionlinemalware_download2026-09-26
hxxp://112.198.130.112:55872/Mozi.monlinemalware_download2026-09-26
hxxp://180.191.228.88:33105/ionlinemalware_download2026-09-26
hxxp://120.28.193.113:38804/bin.shonlinemalware_download2026-09-26
hxxp://117.26.113.132:53874/ionlinemalware_download2026-09-26
hxxp://123.135.74.52:51067/ionlinemalware_download2026-09-26
hxxp://124.235.175.136:50741/ionlinemalware_download2026-09-26
hxxp://130.12.209.153:57008/bin.shonlinemalware_download2026-09-26
hxxp://124.235.175.136:50741/bin.shonlinemalware_download2026-09-26
hxxp://216.249.4.20:44977/ionlinemalware_download2026-09-26
hxxp://112.198.195.68:36394/bin.shonlinemalware_download2026-09-26

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: mirai
let malicious_domains = dynamic(["112.198.130.112", "216.249.4.20", "170.84.133.234", "112.198.195.68", "171.36.9.93", "58.65.210.132", "181.174.231.21", "130.12.209.153", "120.28.193.113", "117.26.113.132", "87.13.96.192", "123.135.74.52", "180.191.228.88", "124.235.175.136", "105.224.38.185"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc

KQL: Url Proxy Hunt

// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["112.198.130.112", "216.249.4.20", "170.84.133.234", "112.198.195.68", "171.36.9.93", "58.65.210.132", "181.174.231.21", "130.12.209.153", "120.28.193.113", "117.26.113.132", "87.13.96.192", "123.135.74.52", "180.191.228.88", "124.235.175.136", "105.224.38.185"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://urlhaus.abuse.ch/