This hunt targets the Amos malware family, which leverages specific malicious URLs to facilitate command-and-control communications or deliver payloads, often indicating a targeted intrusion or web-based attack vector. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify compromised endpoints or suspicious web traffic before the adversary can fully establish persistence or execute lateral movement within the environment.
Threat: Amos Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://roptik.com/dynamic?txd=b54cc90c9143f757e0ac59356414f14447d5f9cbbae0b0e61cf6b4e8ced28f42 | offline | malware_download | 2026-09-17 |
hxxps://roptik.com/curl/b54cc90c9143f757e0ac59356414f14447d5f9cbbae0b0e61cf6b4e8ced28f42 | offline | malware_download | 2026-09-17 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: Amos
let malicious_domains = dynamic(["roptik.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc
// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["roptik.com"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
https://staging-amos-cdn.example.com/...) that shares a similar domain structure or subdomain naming convention with the known malicious “Amos” URLs, triggering a fuzzy match or exact substring match in the hunt package.
staging-, preprod-, dev-) or specific internal CDN hostnames (e.g., *.cloudfront.net, *.azureedge.net) if the malicious URLs are hosted on public infrastructure.svc-ci-runner, admin-jumpbox-01).svc-backup, zabbix-agent, datadog-agent) or specific scheduled task names (e.g., DailyConfigSync, LogRotation).