Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

2249+ Articles
157+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. Security
  3. AWS Research and Engineering Studio Symlink File Read Exposes Root-Accessible Secrets
AWS Research and Engineering Studio Symlink File Read Exposes Root-Accessible Secrets
SECURITYHIGHCVE-2026-14904

AWS Research and Engineering Studio Symlink File Read Exposes Root-Accessible Secrets

An improper link resolution vulnerability in AWS Research and Engineering Studio (RES) allows authenticated users to replace their SSH key with a symlink, causing the cluster-manager process (running as root) to return the contents of any root-readable file on the host — including other users' private keys and application secrets.

Dylan H.

Security Team

August 7, 2026
5 min read

Affected Products

  • AWS Research and Engineering Studio (RES) < 2026.06

Executive Summary

CVE-2026-14904 is a high-severity path traversal via symlink (CWE-59) vulnerability in AWS Research and Engineering Studio (RES). The Auth.GetUserPrivateKey API resolves symbolic links before checking file access permissions, and the cluster-manager service that processes these requests runs as root. An authenticated attacker can replace their own SSH private key file with a symbolic link pointing to any file accessible by root — including other users' SSH private keys, application credentials, and environment configuration secrets.

AttributeValue
CVE IDCVE-2026-14904
CVSS Score7.1 (High)
CVSS VectorCVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N
CWECWE-59 — Improper Link Resolution Before File Access
AuthenticationLow privilege (valid RES account required)
Attack VectorNetwork
ImpactConfidentiality — High
AWS Bulletin2026-053-AWS
PublishedJuly 7, 2026
CISA KEVNo

Vulnerability Overview

Root Cause

AWS Research and Engineering Studio exposes the Auth.GetUserPrivateKey API, which is designed to return a user's SSH private key from their home directory (~/.ssh/id_rsa). The vulnerability exists because:

  1. The API resolves symbolic links before enforcing file access restrictions
  2. The cluster-manager process that services this API call executes as root
  3. There is no check to ensure the resolved path remains within the user's home directory

This combination allows an authenticated user to create a symlink from their expected key path to any target file on the filesystem, causing the cluster-manager to return the target file's contents as if it were their SSH key.

Attack Path

1. Attacker authenticates to RES with a valid (low-privilege) account
2. Attacker replaces ~/.ssh/id_rsa with a symlink:
   ln -s /etc/shadow ~/.ssh/id_rsa
   (or target any credential file, config, or root-readable secret)
3. Attacker calls Auth.GetUserPrivateKey via the RES API
4. cluster-manager (running as root) follows the symlink
5. Contents of /etc/shadow (or target file) returned to attacker

What Can Be Exfiltrated

Because the cluster-manager runs as root, any file readable by root is a potential target:

  • Other users' SSH private keys (~/.ssh/id_rsa for any user)
  • Application secrets and credentials stored in environment files
  • Database connection strings embedded in configuration files
  • AWS credential files (~/.aws/credentials)
  • System password hashes (/etc/shadow)
  • Private TLS certificates and keys

Affected Products

ProductAffected VersionsFixed Version
AWS Research and Engineering Studio (RES)All versions before 2026.062026.06

AWS Research and Engineering Studio is a managed service that enables researchers and engineers to provision and manage HPC clusters, virtual desktops, and collaborative computing environments on AWS.


Remediation

Patch

Upgrade to AWS RES version 2026.06 or later. This is the only documented remediation. AWS has not published additional interim workarounds.

Verify Your Version

# Check your current RES deployment version via AWS Console:
# Navigate to AWS RES → Settings → About
 
# Or via AWS CLI:
aws res get-cluster-info --query 'ClusterInfo.SoftwareVersion'

Post-Upgrade Actions

If you were running an affected version of RES, consider the following:

  1. Audit Auth.GetUserPrivateKey API call logs — Review CloudTrail logs for unusual calls to this API from unexpected users or at unusual times
  2. Rotate potentially exposed credentials — If any user could have exploited this, rotate all SSH keys, AWS credentials, and application secrets accessible on the cluster-manager host
  3. Audit file system for unexpected symlinks — Check user home directories for symlinks that point outside the home directory
# Find symlinks in user home directories pointing outside /home
find /home -type l -exec sh -c 'target=$(readlink -f "$1"); [[ "$target" != /home/* ]] && echo "Suspicious symlink: $1 -> $target"' _ {} \;

Detection

CloudTrail Log Review

Monitor AWS CloudTrail for GetUserPrivateKey API calls and correlate against expected user activity:

SignalDescription
GetUserPrivateKey calls from service accountsUnexpected callers
High-frequency GetUserPrivateKey callsPossible scanning/enumeration
Calls at unusual hoursOff-hours exploitation attempts

File System Indicators

IndicatorDescription
Symlinks in ~/.ssh/ pointing outside home dirExploitation setup
Unexpected file reads in audit logs for sensitive pathsSuccessful exploitation
Modified ~/.ssh/id_rsa mtime without corresponding key rotationPossible symlink swap

Context: AWS RES Architecture

AWS Research and Engineering Studio is deployed with a cluster-manager EC2 instance that orchestrates resources. This component runs privileged processes that interact with user home directories shared across the cluster. The privileged execution context — necessary for cluster management functions — is what enables this vulnerability to read files beyond the intended scope.

The pattern of "privileged service following user-controlled symlinks" is a class of vulnerability (CWE-59 / TOCTOU) that appears across many HPC and shared computing systems. Defenders should review any service that:

  • Runs as root or a highly privileged user
  • Accesses files based on user-controlled paths
  • Does not canonicalize paths before access

Key Takeaways

  1. CVSS 7.1 High — Authenticated users can read any root-accessible file via symlink pivot
  2. AWS RES cluster-manager runs as root — Dramatically expands the impact of the path traversal
  3. Upgrade to RES 2026.06 — The only published remediation
  4. Audit CloudTrail for Auth.GetUserPrivateKey calls if running an affected version
  5. Rotate all secrets on affected clusters — SSH keys, AWS credentials, application config secrets

References

  • AWS Security Bulletin 2026-053-AWS
  • OpenCVE — CVE-2026-14904
  • BaseFortify — CVE-2026-14904 Report
  • CWE-59: Improper Link Resolution Before File Access
#AWS#CVE-2026-14904#Symlink#File Read#Research and Engineering Studio#RES#Cloud Security

Related Articles

CVE-2026-18248: Fastify AWS Lambda Auth Bypass Allows Privilege Escalation

A critical vulnerability in @fastify/aws-lambda 6.4.0 allows attackers to spoof AWS API Gateway authorizer claims by sending crafted HTTP headers, bypassing authorization logic in Fastify applications deployed on AWS Lambda.

5 min read

CVE-2026-22874: Gitea SSRF Filter Bypass Exposes Cloud Credentials

Gitea versions through 1.26.2 use an incomplete IP filter that allows authenticated users to reach AWS Instance Metadata, Azure WireServer, and...

5 min read

CVE-2026-54420: LiteSpeed cPanel Plugin Symlink Escape on Shared Hosting

A high-severity symlink vulnerability in the LiteSpeed cPanel plugin (CVSS 8.5) allows users with FTP or web shell access to escape CloudLinux/CageFS...

5 min read
Back to all Security Alerts