← Back to SOC feed Coverage →

ThreatFox: AMOS IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsUrlClickEvents
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-18T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of eight known indicators of compromise associated with the AMOS malware family, which often leverages these artifacts to establish persistence or execute malicious payloads. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify compromised assets early, potentially disrupting the AMOS campaign before it escalates to lateral movement or data exfiltration.

IOC Summary

Malware Family: AMOS Total IOCs: 8 IOC Types: url, sha256_hash

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://jadeleap15.com/contactbotnet_cc2026-09-18100%
urlhxxp://178[.]128[.]253[.]92/api/metrics/runbotnet_cc2026-09-18100%
urlhxxps://rudder-moss.com/zxc/app.zippayload_delivery2026-09-18100%
urlhxxps://rudder-moss.com/zxc/apptwo.zippayload_delivery2026-09-18100%
urlhxxps://rudder-moss.com/zxc/appex.zippayload_delivery2026-09-18100%
urlhxxps://rudder-moss.com/zxc/kitopayload_delivery2026-09-18100%
urlhxxps://rudder-moss.com/zxc/mdwpayload_delivery2026-09-18100%
sha256_hash158e11946bf88b2de4cabca7ea6b07dde9232c903a3925a60a3fd947bf1017b2payload2026-09-18100%

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - AMOS
let malicious_urls = dynamic(["https://jadeleap15.com/contact", "http://178.128.253.92/api/metrics/run", "https://rudder-moss.com/zxc/app.zip", "https://rudder-moss.com/zxc/apptwo.zip", "https://rudder-moss.com/zxc/appex.zip", "https://rudder-moss.com/zxc/kito", "https://rudder-moss.com/zxc/mdw"]);
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(["158e11946bf88b2de4cabca7ea6b07dde9232c903a3925a60a3fd947bf1017b2"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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