← Back to SOC feed Coverage →

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

Hunt Hypothesis

This hypothesis targets the execution of AgentTesla, a remote access trojan often distributed via malicious URLs, which allows adversaries to steal credentials and establish persistent control over compromised endpoints. Proactively hunting for these known malicious URLs in Azure Sentinel enables the SOC team to identify early-stage infections and lateral movement attempts before the malware can fully establish its foothold within the environment.

This hypothesis targets the execution of AgentTesla, a remote access trojan often distributed via malicious URLs, which allows adversaries to steal credentials and establish persistent control over compromised endpoints. Proactively hunting for these known malicious URLs in Azure Sentinel enables the SOC team to identify early-stage infections and lateral movement attempts before the malware can fully establish its foothold within the environment.

IOC Summary

Threat: AgentTesla Total URLs: 4 Active URLs: 2

URLStatusThreatDate Added
hxxp://tripfarely.com/crop/5.jpgofflinemalware_download2026-09-14
hxxp://216.9.224.48/90/mckaApc.txtonlinemalware_download2026-09-14
hxxp://207.180.58.136/5.jpgofflinemalware_download2026-09-14
hxxps://firebasestorage.googleapis.com/v0/b/julyendingapama.firebasestorage.app/o/img_092159.png?alt=media&token=930852e2-f86f-4478-8b58-ec8f3ab5c5e5onlinemalware_download2026-09-14

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: AgentTesla
let malicious_domains = dynamic(["firebasestorage.googleapis.com", "216.9.224.48"]);
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(["firebasestorage.googleapis.com", "216.9.224.48"]);
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/