← Back to SOC feed Coverage →

URLhaus: hta 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-17T23:00:00Z · Confidence: medium

Hunt Hypothesis

This rule detects the execution of malicious HTML Application (HTA) files, a technique frequently exploited by adversaries to bypass security controls and establish initial footholds or execute payloads. Proactively hunting for these URLs in Azure Sentinel is critical because HTA files often operate in a trusted context, allowing attackers to run code with elevated privileges and evade standard endpoint detections.

IOC Summary

Threat: hta Total URLs: 8 Active URLs: 1

URLStatusThreatDate Added
hxxp://96.44.167.210/18/bcc.htaofflinemalware_download2026-09-17
hxxp://107.175.148.115/60/givingbestthings.htaofflinemalware_download2026-09-17
hxxp://212.2.35.14/35/givingmebestthings.htaofflinemalware_download2026-09-17
hxxp://107.173.227.124/60/goodthings.htaofflinemalware_download2026-09-17
hxxp://192.236.217.110/83/goodthings.htaofflinemalware_download2026-09-17
hxxp://96.44.167.210/15/givenmebestthingsforbetter.htaofflinemalware_download2026-09-17
hxxp://107.172.172.220/80/ggb.htaofflinemalware_download2026-09-17
hxxp://96.44.167.210/16/CMH.htaonlinemalware_download2026-09-17

KQL: Url Dns Hunt

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