← 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-24T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets the execution of 32-bit malicious payloads delivered via known URLhaus entries, indicating an adversary is actively deploying architecture-specific malware to compromise endpoints. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify and isolate affected hosts before the 32-bit binaries can establish persistence or lateral movement within the environment.

IOC Summary

Threat: 32-bit Total URLs: 7 Active URLs: 4

URLStatusThreatDate Added
hxxp://112.252.198.182:39918/ionlinemalware_download2026-09-24
hxxp://182.120.148.13:49700/bin.shonlinemalware_download2026-09-24
hxxp://218.74.50.31:41585/iofflinemalware_download2026-09-24
hxxp://42.234.154.101:40746/bin.shonlinemalware_download2026-09-24
hxxp://218.74.50.31:41585/bin.shofflinemalware_download2026-09-24
hxxp://115.56.159.3:39106/iofflinemalware_download2026-09-24
hxxp://115.56.159.3:39106/bin.shonlinemalware_download2026-09-24

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["112.252.198.182", "115.56.159.3", "42.234.154.101", "182.120.148.13"]);
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.252.198.182", "115.56.159.3", "42.234.154.101", "182.120.148.13"]);
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/