← Back to SOC feed Coverage →

ThreatFox: AMOS IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsDnsEventsUrlClickEvents
iocosx-amosthreatfox
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 ThreatFox →
Retrieved: 2026-09-26T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of known AMOS threat indicators to identify potential compromise by this advanced malware family, which often leverages these IOCs for initial access or persistence. Proactively hunting for these specific indicators in Azure Sentinel allows the SOC to detect active or dormant AMOS infections early, mitigating the risk of lateral movement and data exfiltration before the adversary establishes a foothold in the environment.

IOC Summary

Malware Family: AMOS Total IOCs: 5 IOC Types: url, sha256_hash, domain

TypeValueThreat TypeFirst SeenConfidence
sha256_hashea55fa3a9aea8ae8a48ee68835f48079c668c2a916960318a65da7726269d2eepayload2026-09-26100%
domainmaple30.compayload_delivery2026-09-26100%
urlhxxps://maple30.com/f/680apd_597afiqvimxvelw/sfjwmrjypayload_delivery2026-09-26100%
urlhxxps://quillchant14.com/curl/owe4d2uwalzu/gkgeuf4jglj8kmpnoqb.txtpayload_delivery2026-09-26100%
domainquillchant14.compayload_delivery2026-09-26100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - AMOS
let malicious_domains = dynamic(["maple30.com", "quillchant14.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - AMOS
let malicious_urls = dynamic(["https://maple30.com/f/680apd_597afiqvimxvelw/sfjwmrjy", "https://quillchant14.com/curl/owe4d2uwalzu/gkgeuf4jglj8kmpnoqb.txt"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - AMOS
let malicious_hashes = dynamic(["ea55fa3a9aea8ae8a48ee68835f48079c668c2a916960318a65da7726269d2ee"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DeviceFileEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/osx.amos/