← Back to SOC feed Coverage →

URLhaus: PureLogsStealer Malicious URLs

ioc-hunt HIGH URLhaus
CommonSecurityLogDnsEvents
infostealeriocurlhaus
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-04T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets the execution of the PureLogsStealer infostealer, which typically operates via malicious URLs to exfiltrate sensitive data such as browser credentials and session tokens. Proactively hunting for these specific indicators in Azure Sentinel allows the SOC team to identify compromised endpoints or web traffic patterns before the malware can establish persistence or escalate privileges within the environment.

IOC Summary

Threat: PureLogsStealer Total URLs: 2 Active URLs: 1

URLStatusThreatDate Added
hxxps://lively-fog-af49.pablosoftwareplus.workers.dev/Lijvdofflinemalware_download2026-09-04
hxxps://res.cloudinary.com/a9owl0wo/image/upload/v1788508965/img_100122.jpgonlinemalware_download2026-09-04

KQL: Url Dns Hunt

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