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

Hunt Hypothesis

This detection identifies adversary activity involving known malicious ASCII URLs that may indicate phishing campaigns or command-and-control communications leveraging text-based web resources. Proactive hunting in Azure Sentinel is essential to rapidly isolate these specific threats before they compromise endpoints through user interaction with high-severity external links.

IOC Summary

Threat: ascii Total URLs: 5 Active URLs: 0

URLStatusThreatDate Added
hxxp://103.229.53.84:8443/run.ps1offlinemalware_download2026-08-19
hxxp://103.229.53.84:8443/r.ps1offlinemalware_download2026-08-19
hxxp://103.229.53.84:8443/update.ps1offlinemalware_download2026-08-19
hxxp://akb.cat/N330offlinemalware_download2026-08-19
hxxps://verifyidentify.com/checkofflinemalware_download2026-08-19

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ascii
let malicious_domains = dynamic(["verifyidentify.com", "103.229.53.84", "akb.cat"]);
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(["verifyidentify.com", "103.229.53.84", "akb.cat"]);
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

False Positive Scenarios for “URLhaus: ascii Malicious URLs” Rule

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