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

Hunt Hypothesis

This hunt detects adversary behavior where endpoints access known malicious URLs specifically targeting 32-bit architectures, potentially indicating an attempt to exploit legacy systems or deliver tailored payloads. A SOC team should proactively hunt for these indicators in Azure Sentinel to identify early-stage compromises on older infrastructure that may lack modern security controls and are often overlooked by standard detection rules.

IOC Summary

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

URLStatusThreatDate Added
hxxp://223.105.50.190:53132/bin.shonlinemalware_download2026-08-08
hxxp://45.171.177.193:32861/ionlinemalware_download2026-08-08
hxxp://123.5.83.209:57935/ionlinemalware_download2026-08-08
hxxp://42.55.138.2:60455/bin.shonlinemalware_download2026-08-08

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["45.171.177.193", "123.5.83.209", "223.105.50.190", "42.55.138.2"]);
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.171.177.193", "123.5.83.209", "223.105.50.190", "42.55.138.2"]);
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

Here are 5 specific false positive scenarios for the URLhaus: 32-bit Malicious URLs detection rule, tailored for a legitimate enterprise environment:

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