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

Hunt Hypothesis

This rule identifies potential 32-bit malicious URLs tracked by URLhaus, indicating that an endpoint may be interacting with known malicious web resources to facilitate payload delivery or command-and-control communications. Proactively hunting for these indicators in Azure Sentinel allows the SOC to detect early-stage web-based threats and isolate affected assets before they progress to more complex post-exploitation activities.

IOC Summary

Threat: 32-bit Total URLs: 14 Active URLs: 11

URLStatusThreatDate Added
hxxp://196.190.10.252:40024/ionlinemalware_download2026-09-23
hxxp://196.190.10.252:40024/bin.shonlinemalware_download2026-09-23
hxxp://119.179.130.42:34793/bin.shofflinemalware_download2026-09-23
hxxp://112.198.194.175:34769/ionlinemalware_download2026-09-23
hxxp://196.191.233.24:60929/bin.shonlinemalware_download2026-09-23
hxxp://42.228.101.127:50284/ionlinemalware_download2026-09-23
hxxp://222.141.37.15:36990/ionlinemalware_download2026-09-23
hxxp://222.138.118.172:57431/ionlinemalware_download2026-09-23
hxxp://175.165.120.100:41066/iofflinemalware_download2026-09-23
hxxp://42.235.17.46:44550/bin.shonlinemalware_download2026-09-23
hxxp://125.47.117.63:43191/ionlinemalware_download2026-09-23
hxxp://103.172.186.194:52263/bin.shofflinemalware_download2026-09-23
hxxp://42.235.17.46:44550/ionlinemalware_download2026-09-23
hxxp://46.16.150.139:44188/ionlinemalware_download2026-09-23

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["222.138.118.172", "46.16.150.139", "112.198.194.175", "125.47.117.63", "42.235.17.46", "196.191.233.24", "42.228.101.127", "196.190.10.252", "222.141.37.15"]);
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(["222.138.118.172", "46.16.150.139", "112.198.194.175", "125.47.117.63", "42.235.17.46", "196.191.233.24", "42.228.101.127", "196.190.10.252", "222.141.37.15"]);
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/