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

Hunt Hypothesis

This rule detects potential compromise indicators by identifying traffic to known malicious 32-bit URLs, suggesting an adversary is leveraging legacy or specific architecture-based payloads to establish a foothold or exfiltrate data. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify early-stage lateral movement or web-based attacks before they escalate into a broader incident.

IOC Summary

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

URLStatusThreatDate Added
hxxp://222.127.76.40:52775/bin.shonlinemalware_download2026-09-26
hxxp://115.52.33.146:44482/bin.shonlinemalware_download2026-09-26
hxxp://123.189.141.170:40664/bin.shonlinemalware_download2026-09-26
hxxp://59.180.135.43:55956/ionlinemalware_download2026-09-26
hxxp://123.185.244.205:43701/ionlinemalware_download2026-09-26
hxxp://110.139.32.108:51018/bin.shofflinemalware_download2026-09-26
hxxp://42.230.41.157:41249/bin.shonlinemalware_download2026-09-26

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["123.189.141.170", "115.52.33.146", "59.180.135.43", "42.230.41.157", "222.127.76.40", "123.185.244.205"]);
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(["123.189.141.170", "115.52.33.146", "59.180.135.43", "42.230.41.157", "222.127.76.40", "123.185.244.205"]);
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/