← Back to SOC feed Coverage →

URLhaus: ascii 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-24T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets adversaries leveraging ASCII-encoded malicious URLs to obfuscate phishing links or command-and-control channels, a technique that often bypasses basic signature-based detection. Proactively hunting for these specific URL patterns in Azure Sentinel allows the SOC to identify compromised endpoints or email gateways before the encoded payloads are decoded and executed, reducing the mean time to detection for high-severity web-based threats.

IOC Summary

Threat: ascii Total URLs: 2 Active URLs: 2

URLStatusThreatDate Added
hxxps://hponline.run.place/caty/6DerwjXowhdyTfqgNm73w23CbvRhwQ38d.jsonlinemalware_download2026-09-24
hxxps://hponline.run.place/ccaattss/caty/6DerwjXowhdyTfqgNm73w23CbvRhwQ38d.jsonlinemalware_download2026-09-24

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ascii
let malicious_domains = dynamic(["hponline.run.place"]);
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(["hponline.run.place"]);
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/