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

Hunt Hypothesis

This hunt targets potential compromise vectors where endpoints or web proxies interact with known malicious URLs associated with 32-bit malware families, indicating active threat actor infrastructure or payload delivery. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify early-stage lateral movement or data exfiltration attempts before they escalate into a full-blown incident.

IOC Summary

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

URLStatusThreatDate Added
hxxp://123.4.40.181:47310/bin.shonlinemalware_download2026-09-19
hxxp://42.226.216.100:53095/ionlinemalware_download2026-09-19
hxxp://45.233.94.135:39288/bin.shonlinemalware_download2026-09-19
hxxp://96.245.232.251:44492/ionlinemalware_download2026-09-19
hxxp://42.226.216.100:53095/bin.shonlinemalware_download2026-09-19

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["45.233.94.135", "42.226.216.100", "96.245.232.251", "123.4.40.181"]);
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(["45.233.94.135", "42.226.216.100", "96.245.232.251", "123.4.40.181"]);
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/