← Back to SOC feed Coverage →

ThreatFox: AMOS IOCs

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

Hunt Hypothesis

This hunt targets the presence of 13 known Indicators of Compromise (IOCs) associated with the AMOS threat actor, a group frequently linked to advanced persistent threats and ransomware operations. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify potential footholds or lateral movement attempts before the adversary can establish persistence or execute their payload.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
domainlyric-8.combotnet_cc2026-09-19100%
ip:port165[.]232[.]73[.]74:80botnet_cc2026-09-19100%
urlhxxps://lyric-8.com/api/metrics/run?event=pastedbotnet_cc2026-09-19100%
urlhxxps://lyric-8.com/api/metrics/run?event=stagerbotnet_cc2026-09-19100%
urlhxxp://165[.]232[.]73[.]74/api/metrics/runbotnet_cc2026-09-19100%
domainblueprint-71.compayload_delivery2026-09-19100%
urlhxxps://blueprint-71.com/2kqYRM0DCrnyJgoS4gVLl_FHJRRdTUhGCbjyuYwpZ6c/cc2/updatepayload_delivery2026-09-19100%
urlhxxps://blueprint-71.com/curl/amtkquxbo3/obh3bn3umykzjlth.jsonpayload_delivery2026-09-19100%
sha256_hasha3dabccd14492f4c70658ece96a3ed7b4e275ff9d70c434298bd6f863d1e24b9payload2026-09-19100%
sha256_hash6e753133e537264247a08587d87b30b8d9a96caea1d6cc92d41fc8058073b8f7payload2026-09-19100%
sha256_hash55b8fff6b61ed493f477bac718c37714075d4ff52bc302d28a331def371834b6payload2026-09-19100%
sha256_hashdfe96b68cb910deb4e29f41c7525e0cd3a2d1c7234e227cbeee4a9e6d535f95fpayload2026-09-19100%
sha256_hash872611186a14d610770b362e3bef2cad071cc211d30c39e2b1a186b35f0294bapayload2026-09-19100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - AMOS
let malicious_ips = dynamic(["165.232.73.74"]);
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(["165.232.73.74"]);
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(["lyric-8.com", "blueprint-71.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - AMOS
let malicious_urls = dynamic(["https://lyric-8.com/api/metrics/run?event=pasted", "https://lyric-8.com/api/metrics/run?event=stager", "http://165.232.73.74/api/metrics/run", "https://blueprint-71.com/2kqYRM0DCrnyJgoS4gVLl_FHJRRdTUhGCbjyuYwpZ6c/cc2/update", "https://blueprint-71.com/curl/amtkquxbo3/obh3bn3umykzjlth.json"]);
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(["a3dabccd14492f4c70658ece96a3ed7b4e275ff9d70c434298bd6f863d1e24b9", "6e753133e537264247a08587d87b30b8d9a96caea1d6cc92d41fc8058073b8f7", "55b8fff6b61ed493f477bac718c37714075d4ff52bc302d28a331def371834b6", "dfe96b68cb910deb4e29f41c7525e0cd3a2d1c7234e227cbeee4a9e6d535f95f", "872611186a14d610770b362e3bef2cad071cc211d30c39e2b1a186b35f0294ba"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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