← Back to SOC feed Coverage →

ThreatFox: AMOS IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsUrlClickEvents
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-12T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary activity by correlating network and endpoint telemetry against ten specific Indicators of Compromise (IOCs) linked to the AMOS threat actor. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification of AMOS-related artifacts enables rapid containment before the threat actor can establish persistence or exfiltrate sensitive data.

IOC Summary

Malware Family: AMOS Total IOCs: 10 IOC Types: sha256_hash, ip:port, url

TypeValueThreat TypeFirst SeenConfidence
urlhxxp://192[.]162[.]199[.]249/tzb10mmujurnpayload_delivery2026-08-12100%
urlhxxp://192[.]162[.]199[.]249/y6b3fuzj0w6pt97epayload_delivery2026-08-12100%
urlhxxp://192[.]162[.]199[.]249/8w6vq50fsupayload_delivery2026-08-12100%
urlhxxp://192[.]162[.]199[.]249/8jot5vdohds0imt4payload_delivery2026-08-12100%
urlhxxp://192[.]162[.]199[.]249/1edjop4tlj2dpayload_delivery2026-08-12100%
urlhxxp://192[.]162[.]199[.]249/zeb8cgwmkkpvu7pcpayload_delivery2026-08-12100%
urlhxxp://192[.]162[.]199[.]249/ezaenul9payload_delivery2026-08-12100%
urlhxxp://192[.]162[.]199[.]249/1vo6lm4y50k3ww0fpayload_delivery2026-08-12100%
ip:port192[.]162[.]199[.]249:80payload_delivery2026-08-12100%
sha256_hash275aeaa88d853ddb93c6e3c102beb1aa2ba41ca1b68af25b47781d9f4460bc5dpayload2026-08-12100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AMOS
let malicious_ips = dynamic(["192.162.199.249"]);
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(["192.162.199.249"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - AMOS
let malicious_urls = dynamic(["http://192.162.199.249/tzb10mmujurn", "http://192.162.199.249/y6b3fuzj0w6pt97e", "http://192.162.199.249/8w6vq50fsu", "http://192.162.199.249/8jot5vdohds0imt4", "http://192.162.199.249/1edjop4tlj2d", "http://192.162.199.249/zeb8cgwmkkpvu7pc", "http://192.162.199.249/ezaenul9", "http://192.162.199.249/1vo6lm4y50k3ww0f"]);
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(["275aeaa88d853ddb93c6e3c102beb1aa2ba41ca1b68af25b47781d9f4460bc5d"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios for the ThreatFox: AMOS IOCs detection rule, along with suggested filters and exclusions tailored for an enterprise environment:

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