← Back to SOC feed Coverage →

URLhaus: 32-bit 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-10T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets the execution of 32-bit malicious payloads delivered via known URLhaus entries, indicating an adversary attempting to compromise legacy or mixed-architecture endpoints through direct web-based delivery. Proactively hunting for these specific URLs in Azure Sentinel allows the SOC to identify early-stage intrusions and lateral movement vectors that may evade standard signature-based detections, particularly in environments where 32-bit applications remain prevalent.

IOC Summary

Threat: 32-bit Total URLs: 13 Active URLs: 13

URLStatusThreatDate Added
hxxp://61.54.41.118:40394/ionlinemalware_download2026-09-10
hxxp://115.55.151.48:39130/ionlinemalware_download2026-09-10
hxxp://115.55.151.48:39130/bin.shonlinemalware_download2026-09-10
hxxp://182.113.28.110:45510/ionlinemalware_download2026-09-10
hxxp://123.4.249.119:44171/ionlinemalware_download2026-09-10
hxxp://101.74.52.251:15884/ionlinemalware_download2026-09-10
hxxp://101.74.52.251:15884/bin.shonlinemalware_download2026-09-10
hxxp://182.126.103.229:37256/ionlinemalware_download2026-09-10
hxxp://115.53.247.98:42289/ionlinemalware_download2026-09-10
hxxp://119.73.59.113:51110/bin.shonlinemalware_download2026-09-10
hxxp://115.53.247.98:42289/bin.shonlinemalware_download2026-09-10
hxxp://182.126.103.229:37256/bin.shonlinemalware_download2026-09-10
hxxp://42.228.245.61:34804/ionlinemalware_download2026-09-10

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["182.126.103.229", "119.73.59.113", "61.54.41.118", "115.55.151.48", "42.228.245.61", "101.74.52.251", "182.113.28.110", "123.4.249.119", "115.53.247.98"]);
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(["182.126.103.229", "119.73.59.113", "61.54.41.118", "115.55.151.48", "42.228.245.61", "101.74.52.251", "182.113.28.110", "123.4.249.119", "115.53.247.98"]);
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/