← Back to SOC feed Coverage →

ThreatFox: AMOS IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsDnsEvents
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-06-05T11:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: AMOS IOCs rule detects potential adversary activity linked to the AMOS threat group, leveraging known indicators of compromise to identify malicious behavior in the environment. SOC teams should proactively hunt for these IOCs in Azure Sentinel to detect and mitigate advanced persistent threats that may be leveraging AMOS tactics to exfiltrate data or establish persistence.

IOC Summary

Malware Family: AMOS Total IOCs: 8 IOC Types: ip:port, domain, sha1_hash

TypeValueThreat TypeFirst SeenConfidence
domainanvil-89.compayload_delivery2026-06-05100%
domainbloomglow9.compayload_delivery2026-06-05100%
domainalragaa.combotnet_cc2026-06-05100%
domaindata-hub-2312.combotnet_cc2026-06-05100%
ip:port167[.]71[.]70[.]184:80botnet_cc2026-06-05100%
sha1_hashc2b96ba6140ed15d46a7956ab2e590a39c164197payload2026-06-05100%
sha1_hash8a22239f95067a5a5a9520bfafa4c4b71b7cf828payload2026-06-05100%
sha1_hash85abca56aea793d8a45ddb747c4c4e7cf1ab21aapayload2026-06-05100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AMOS
let malicious_ips = dynamic(["167.71.70.184"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["167.71.70.184"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - AMOS
let malicious_domains = dynamic(["anvil-89.com", "bloomglow9.com", "alragaa.com", "data-hub-2312.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(["c2b96ba6140ed15d46a7956ab2e590a39c164197", "8a22239f95067a5a5a9520bfafa4c4b71b7cf828", "85abca56aea793d8a45ddb747c4c4e7cf1ab21aa"]);
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
CommonSecurityLogEnsure this data connector is enabled
DeviceFileEventsEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

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