← Back to SOC feed Coverage →

ThreatFox: EtherRAT IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
backdooriocjs-ether_ratthreatfox
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-16T11:00:01Z · Confidence: high

Hunt Hypothesis

This rule detects the presence of known indicators of compromise associated with EtherRAT, a remote access trojan frequently used for initial access and lateral movement. Proactively hunting for these IOCs allows the SOC team to identify compromised hosts early, preventing the adversary from establishing persistent control or exfiltrating sensitive data within the Azure environment.

IOC Summary

Malware Family: EtherRAT Total IOCs: 8 IOC Types: domain, url

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://time.austriaeast.cloudapp.azure.combotnet_cc2026-09-1675%
urlhxxps://timesync.westus2.cloudapp.azure.combotnet_cc2026-09-1675%
urlhxxps://zigbee.eastus.cloudapp.azure.combotnet_cc2026-09-1675%
urlhxxps://zigfree.eastus.cloudapp.azure.combotnet_cc2026-09-1675%
domaintime.austriaeast.cloudapp.azure.combotnet_cc2026-09-1675%
domaintimesync.westus2.cloudapp.azure.combotnet_cc2026-09-1675%
domainzigbee.eastus.cloudapp.azure.combotnet_cc2026-09-1675%
domainzigfree.eastus.cloudapp.azure.combotnet_cc2026-09-1675%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - EtherRAT
let malicious_domains = dynamic(["time.austriaeast.cloudapp.azure.com", "timesync.westus2.cloudapp.azure.com", "zigbee.eastus.cloudapp.azure.com", "zigfree.eastus.cloudapp.azure.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 - EtherRAT
let malicious_urls = dynamic(["https://time.austriaeast.cloudapp.azure.com", "https://timesync.westus2.cloudapp.azure.com", "https://zigbee.eastus.cloudapp.azure.com", "https://zigfree.eastus.cloudapp.azure.com"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/js.ether_rat/