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

Hunt Hypothesis

The detection identifies potential 32-bit malware distribution through malicious URLs linked to known malicious actors, leveraging URLhaus intelligence. SOC teams should proactively hunt for this behavior to disrupt early-stage malware deployment and prevent lateral movement within Azure Sentinel environments.

IOC Summary

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

URLStatusThreatDate Added
hxxp://110.39.255.247:40974/ionlinemalware_download2026-05-12
hxxp://198.2.100.25:51642/bin.shonlinemalware_download2026-05-12
hxxp://110.37.53.53:49133/ionlinemalware_download2026-05-12
hxxp://110.39.255.247:40974/bin.shonlinemalware_download2026-05-12
hxxp://115.58.171.103:55092/ionlinemalware_download2026-05-12
hxxp://182.123.194.4:57810/ionlinemalware_download2026-05-12
hxxp://115.63.146.155:34136/ionlinemalware_download2026-05-12
hxxp://182.123.194.4:57810/bin.shonlinemalware_download2026-05-12
hxxp://119.185.241.39:48233/bin.shonlinemalware_download2026-05-12
hxxp://182.112.36.145:56455/bin.shonlinemalware_download2026-05-12
hxxp://27.37.101.140:48369/ionlinemalware_download2026-05-12
hxxp://110.39.231.96:52783/ionlinemalware_download2026-05-12
hxxp://84.240.11.145:51885/bin.shonlinemalware_download2026-05-12
hxxp://110.36.65.9:51025/bin.shonlinemalware_download2026-05-12

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["198.2.100.25", "110.39.231.96", "119.185.241.39", "110.39.255.247", "115.63.146.155", "84.240.11.145", "27.37.101.140", "110.37.53.53", "110.36.65.9", "182.112.36.145", "115.58.171.103", "182.123.194.4"]);
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(["198.2.100.25", "110.39.231.96", "119.185.241.39", "110.39.255.247", "115.63.146.155", "84.240.11.145", "27.37.101.140", "110.37.53.53", "110.36.65.9", "182.112.36.145", "115.58.171.103", "182.123.194.4"]);
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/