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

Hunt Hypothesis

This hunt detects adversary activity where endpoints access known 32-bit malicious URLs identified by URLhaus, indicating potential initial compromise or command-and-control communication via legacy web traffic. A SOC team should proactively hunt for this behavior in Azure Sentinel to identify and isolate systems interacting with these specific threats before they escalate into broader lateral movement or data exfiltration incidents.

IOC Summary

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

URLStatusThreatDate Added
hxxp://115.49.126.243:40911/bin.shonlinemalware_download2026-08-01
hxxp://42.239.242.122:46355/ionlinemalware_download2026-08-01
hxxp://59.96.142.198:43829/ionlinemalware_download2026-08-01
hxxp://61.52.172.186:57507/bin.shonlinemalware_download2026-08-01
hxxp://222.241.210.219:59142/ionlinemalware_download2026-08-01
hxxp://42.235.88.72:40827/ionlinemalware_download2026-08-01
hxxp://59.96.142.198:43829/bin.shonlinemalware_download2026-08-01
hxxp://222.241.210.219:59142/bin.shonlinemalware_download2026-08-01
hxxp://42.235.88.72:40827/bin.shonlinemalware_download2026-08-01
hxxp://59.42.91.193:42731/ionlinemalware_download2026-08-01
hxxp://222.141.83.246:54420/ionlinemalware_download2026-08-01
hxxp://222.141.83.246:54420/bin.shonlinemalware_download2026-08-01
hxxp://59.42.91.193:42731/bin.shonlinemalware_download2026-08-01
hxxp://113.4.67.131:34072/ionlinemalware_download2026-08-01
hxxp://115.63.231.224:44855/bin.shonlinemalware_download2026-08-01

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["42.235.88.72", "59.96.142.198", "59.42.91.193", "42.239.242.122", "222.141.83.246", "115.49.126.243", "61.52.172.186", "113.4.67.131", "222.241.210.219", "115.63.231.224"]);
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.235.88.72", "59.96.142.198", "59.42.91.193", "42.239.242.122", "222.141.83.246", "115.49.126.243", "61.52.172.186", "113.4.67.131", "222.241.210.219", "115.63.231.224"]);
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 rule, along with targeted filters and exclusions suitable for an enterprise environment:

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