← Back to SOC feed Coverage →

URLhaus: Amos 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-18T23:00:01Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets the execution of the Amos banking trojan, which typically initiates via malicious URLs delivered through phishing or compromised web pages to establish a foothold in the environment. Proactively hunting for these specific indicators in Azure Sentinel allows the SOC to identify compromised endpoints early, preventing the trojan from deploying its keylogger and stealing sensitive financial or corporate credentials.

IOC Summary

Threat: Amos Total URLs: 3 Active URLs: 0

URLStatusThreatDate Added
hxxps://genovaw.com/loader/agent/001e07c934e19b9d10f621c6b7546b43b2fb1c7b8fce2625fc7b767dfb626336offlinemalware_download2026-09-18
hxxps://genovaw.com/curl/001e07c934e19b9d10f621c6b7546b43b2fb1c7b8fce2625fc7b767dfb626336offlinemalware_download2026-09-18
hxxps://implantdentistrytx.com/curl/b54cc90c9143f757e0ac59356414f14447d5f9cbbae0b0e61cf6b4e8ced28f42offlinemalware_download2026-09-18

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Amos
let malicious_domains = dynamic(["genovaw.com", "implantdentistrytx.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(["genovaw.com", "implantdentistrytx.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/