← Back to SOC feed Coverage →

ThreatFox: AMOS IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
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-08-02T23:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies adversary activity by monitoring for five specific Indicators of Compromise (IOCs) linked to the AMOS threat actor within Azure Sentinel logs. Proactive hunting for these IOCs is critical because early identification of AMOS-related artifacts enables the SOC team to rapidly contain potential intrusions before they escalate into broader compromises.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
domainfeather-24.compayload_delivery2026-08-02100%
domainhaven-vibe.combotnet_cc2026-08-02100%
urlhxxps://feather-24.com/curl/50919cfb07265cc6116b5ced7fbdb9c8f5e214445eea436e93e2c88d70da7e43payload_delivery2026-08-02100%
urlhxxps://haven-vibe.com/api/metrics/run?event=pastedbotnet_cc2026-08-02100%
urlhxxps://feather-24.com/2kqYRM0DCrnyJgoS4gVLl_FHJRRdTUhGCbjyuYwpZ6c/code3/updatepayload_delivery2026-08-02100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - AMOS
let malicious_domains = dynamic(["feather-24.com", "haven-vibe.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://feather-24.com/curl/50919cfb07265cc6116b5ced7fbdb9c8f5e214445eea436e93e2c88d70da7e43", "https://haven-vibe.com/api/metrics/run?event=pasted", "https://feather-24.com/2kqYRM0DCrnyJgoS4gVLl_FHJRRdTUhGCbjyuYwpZ6c/code3/update"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

Here are 4 specific false positive scenarios and their corresponding filters/exclusions for the ThreatFox: AMOS IOCs detection rule:

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