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.
Malware Family: AMOS Total IOCs: 5 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | feather-24.com | payload_delivery | 2026-08-02 | 100% |
| domain | haven-vibe.com | botnet_cc | 2026-08-02 | 100% |
| url | hxxps://feather-24.com/curl/50919cfb07265cc6116b5ced7fbdb9c8f5e214445eea436e93e2c88d70da7e43 | payload_delivery | 2026-08-02 | 100% |
| url | hxxps://haven-vibe.com/api/metrics/run?event=pasted | botnet_cc | 2026-08-02 | 100% |
| url | hxxps://feather-24.com/2kqYRM0DCrnyJgoS4gVLl_FHJRRdTUhGCbjyuYwpZ6c/code3/update | payload_delivery | 2026-08-02 | 100% |
// 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
// 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
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios and their corresponding filters/exclusions for the ThreatFox: AMOS IOCs detection rule:
Scenario: Security Team Manual IOC Hunting
source_user belongs to the Security_Ops or SOC_Analysts Active Directory group, and the process_name is a known security tool (e.g., Splunkd.exe, SentinelOneAgent.exe, CrowdStrikeService.exe).Scenario: Scheduled Endpoint Protection Updates
scheduled_task_name matching “ThreatFeedUpdate” or “DailyIOCRefresh,” and restrict the filter to run only during the maintenance window (e.g., 01:00–04:00 UTC).Scenario: Automated Compliance Scanning by Third-Party Tools