← 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-04-21T09:00:00Z · Confidence: medium

Hunt Hypothesis

The hypothesis is that the detected URLs are likely used by adversaries to deliver 32-bit malware, which may bypass modern endpoint protections. SOC teams should proactively hunt for these URLs in Azure Sentinel to identify and mitigate potential malware distribution channels before they cause widespread compromise.

IOC Summary

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

URLStatusThreatDate Added
hxxp://113.236.87.176:43444/ionlinemalware_download2026-04-21
hxxp://115.50.202.74:59180/bin.shonlinemalware_download2026-04-21
hxxp://182.113.45.223:51635/ionlinemalware_download2026-04-21
hxxp://113.236.87.176:43444/bin.shonlinemalware_download2026-04-21
hxxp://115.61.116.234:37178/ionlinemalware_download2026-04-21
hxxp://182.113.45.223:51635/bin.shonlinemalware_download2026-04-21
hxxp://115.61.116.234:37178/bin.shonlinemalware_download2026-04-21
hxxp://123.8.7.51:49444/bin.shonlinemalware_download2026-04-21
hxxp://115.57.184.122:49912/ionlinemalware_download2026-04-21
hxxp://36.92.154.218:40629/ionlinemalware_download2026-04-21
hxxp://27.37.112.2:60780/ionlinemalware_download2026-04-21
hxxp://115.57.184.122:49912/bin.shonlinemalware_download2026-04-21
hxxp://42.237.48.56:33520/bin.shonlinemalware_download2026-04-21
hxxp://112.240.175.123:44673/ionlinemalware_download2026-04-21
hxxp://118.253.80.60:48921/ionlinemalware_download2026-04-21
hxxp://125.41.142.253:56292/ionlinemalware_download2026-04-21
hxxp://42.54.12.132:33929/bin.shonlinemalware_download2026-04-21
hxxp://118.253.80.60:48921/bin.shonlinemalware_download2026-04-21
hxxp://216.249.4.20:53881/ionlinemalware_download2026-04-21
hxxp://42.235.92.76:60753/ionlinemalware_download2026-04-21
hxxp://216.249.4.20:53881/bin.shonlinemalware_download2026-04-21

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["42.54.12.132", "42.235.92.76", "36.92.154.218", "42.237.48.56", "115.61.116.234", "115.57.184.122", "123.8.7.51", "216.249.4.20", "112.240.175.123", "27.37.112.2", "125.41.142.253", "113.236.87.176", "182.113.45.223", "115.50.202.74", "118.253.80.60"]);
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(["42.54.12.132", "42.235.92.76", "36.92.154.218", "42.237.48.56", "115.61.116.234", "115.57.184.122", "123.8.7.51", "216.249.4.20", "112.240.175.123", "27.37.112.2", "125.41.142.253", "113.236.87.176", "182.113.45.223", "115.50.202.74", "118.253.80.60"]);
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/