← Back to SOC feed Coverage →

ThreatFox: AMOS IOCs

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

Hunt Hypothesis

This hunt targets the presence of seven known indicators of compromise associated with the AMOS malware family, which is frequently deployed to establish persistence and execute malicious payloads within Azure environments. Proactively searching for these IOCs allows the SOC to identify compromised assets early, mitigating the risk of lateral movement and data exfiltration before the adversary can fully establish a foothold in the tenant.

IOC Summary

Malware Family: AMOS Total IOCs: 7 IOC Types: url, sha256_hash, domain

TypeValueThreat TypeFirst SeenConfidence
sha256_hash233fd2c05865e6fc7034e61bf98e64f7afeb24c1b3e88539895eeff764ebb740payload2026-09-20100%
sha256_hash610ae82d0d872334ba68718030bdeb0c2d23ce592b4c9022fbb225b0208b884apayload2026-09-20100%
sha256_hashec780ca8df9d10df905f3f77641f88ece7651303843802c37a57c484c6251a42payload2026-09-20100%
urlhxxps://loombronze.com/contactbotnet_cc2026-09-20100%
domainloombronze.combotnet_cc2026-09-20100%
domainforgewillow.compayload_delivery2026-09-2090%
urlhxxps://forgewillow.com/2kqYRM0DCrnyJgoS4gVLl_FHJRRdTUhGCbjyuYwpZ6c/kis/updatepayload_delivery2026-09-2090%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - AMOS
let malicious_domains = dynamic(["loombronze.com", "forgewillow.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://loombronze.com/contact", "https://forgewillow.com/2kqYRM0DCrnyJgoS4gVLl_FHJRRdTUhGCbjyuYwpZ6c/kis/update"]);
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(["233fd2c05865e6fc7034e61bf98e64f7afeb24c1b3e88539895eeff764ebb740", "610ae82d0d872334ba68718030bdeb0c2d23ce592b4c9022fbb225b0208b884a", "ec780ca8df9d10df905f3f77641f88ece7651303843802c37a57c484c6251a42"]);
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
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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