← Back to SOC feed Coverage →

ThreatFox: AMOS IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsDnsEvents
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-07-22T23:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies adversary activity linked to the AMOS threat actor by monitoring three specific indicators of compromise within Azure Sentinel logs. Proactively hunting for these signals is critical because early identification of AMOS-related IOCs enables the SOC team to rapidly isolate affected assets and mitigate potential data exfiltration or lateral movement before broader impact occurs.

IOC Summary

Malware Family: AMOS Total IOCs: 3 IOC Types: domain, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
domainfabric16.compayload_delivery2026-07-22100%
domainkainashirt.compayload_delivery2026-07-22100%
sha256_hashfc2009166867bee88885f2f889a608260cb971c1e946bbb79ea7d75ae0d429f6payload2026-07-22100%

KQL: Domain Hunt

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

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - AMOS
let malicious_hashes = dynamic(["fc2009166867bee88885f2f889a608260cb971c1e946bbb79ea7d75ae0d429f6"]);
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

References

False Positive Guidance

Here are 5 specific false positive scenarios for the ThreatFox: AMOS IOCs detection rule, tailored for a legitimate enterprise environment:

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