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

Hunt Hypothesis

This detection rule identifies adversary behavior where endpoints access known malicious 32-bit URLs from the URLhaus threat intelligence feed, indicating potential initial compromise or command-and-control activity. A proactive hunt is essential in Azure Sentinel to rapidly isolate affected systems and prevent lateral movement before attackers can exploit legacy 32-bit application vulnerabilities.

IOC Summary

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

URLStatusThreatDate Added
hxxp://110.36.75.82:45777/ionlinemalware_download2026-08-17
hxxp://113.228.208.46:56903/bin.shonlinemalware_download2026-08-17
hxxp://125.41.72.148:43605/ionlinemalware_download2026-08-17
hxxp://110.36.75.82:45777/bin.shonlinemalware_download2026-08-17
hxxp://115.48.37.12:47625/ionlinemalware_download2026-08-17

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["115.48.37.12", "125.41.72.148", "113.228.208.46", "110.36.75.82"]);
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(["115.48.37.12", "125.41.72.148", "113.228.208.46", "110.36.75.82"]);
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 4 specific false positive scenarios for the URLhaus: 32-bit Malicious URLs detection rule, including targeted filters and exclusions:

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