← 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-25T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt targets the execution of 32-bit malicious binaries or payloads delivered via known URLhaus URLs, indicating a potential compromise where adversaries leverage legacy architecture to bypass modern 64-bit defenses. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify early-stage intrusions or persistent backdoors before they escalate to lateral movement or data exfiltration.

IOC Summary

Threat: 32-bit Total URLs: 13 Active URLs: 12

URLStatusThreatDate Added
hxxp://180.252.220.101:36903/iofflinemalware_download2026-09-25
hxxp://124.161.116.2:51205/bin.shonlinemalware_download2026-09-25
hxxp://221.15.174.97:41661/ionlinemalware_download2026-09-25
hxxp://180.252.220.101:36903/bin.shonlinemalware_download2026-09-25
hxxp://123.11.127.124:40919/bin.shonlinemalware_download2026-09-25
hxxp://120.28.192.123:35706/ionlinemalware_download2026-09-25
hxxp://113.230.103.110:56084/bin.shonlinemalware_download2026-09-25
hxxp://120.28.192.123:35706/bin.shonlinemalware_download2026-09-25
hxxp://110.81.120.188:34777/bin.shonlinemalware_download2026-09-25
hxxp://115.48.20.227:40728/bin.shonlinemalware_download2026-09-25
hxxp://222.142.192.177:53688/bin.shonlinemalware_download2026-09-25
hxxp://125.42.123.197:40663/ionlinemalware_download2026-09-25
hxxp://222.127.251.23:50456/bin.shonlinemalware_download2026-09-25

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["120.28.192.123", "123.11.127.124", "113.230.103.110", "115.48.20.227", "222.142.192.177", "124.161.116.2", "125.42.123.197", "221.15.174.97", "222.127.251.23", "180.252.220.101", "110.81.120.188"]);
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(["120.28.192.123", "123.11.127.124", "113.230.103.110", "115.48.20.227", "222.142.192.177", "124.161.116.2", "125.42.123.197", "221.15.174.97", "222.127.251.23", "180.252.220.101", "110.81.120.188"]);
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/