PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-48855 Erlang CVE debrief

CVE-2026-48855 is an Exposure of Sensitive Information to an Unauthorized Actor vulnerability in Erlang OTP ssh (ssh_sftpd module) that allows File Discovery. The SSH_FXP_READLINK handler in ssh_sftpd sends the raw result of file:read_link/2 to the client without calling chroot_filename/2 to strip the backend root prefix. An authenticated SFTP client can create a symlink inside the chroot pointing to /; ssh_sftpd resolves the target to the absolute backend root and stores it on disk. Reading the symlink back via SSH_FXP_READLINK returns that absolute path, for example /data/sftp, instead of the chrooted value /. The information disclosed is the absolute filesystem path of the SFTP root directory and of any symlink targets within it. No file contents, credentials, or access to paths outside the root directory are obtainable through this issue alone.

Vendor
Erlang
Product
OTP
CVSS
LOW 2.3
CISA KEV
Not listed in stored evidence
Original CVE published
2026-06-10
Original CVE updated
2026-06-10
Advisory published
2026-06-10
Advisory updated
2026-06-10

Who should care

Users of Erlang OTP ssh (ssh_sftpd module) versions from OTP 17.0 before 29.0.2, 28.5.0.2 and 27.3.4.13 corresponding to ssh from 3.0.1 before 6.0.1, 5.5.2.1 and 5.2.11.8.

Technical summary

The vulnerability is caused by the SSH_FXP_READLINK handler in ssh_sftpd not calling chroot_filename/2 to strip the backend root prefix when sending the raw result of file:read_link/2 to the client. This allows an authenticated SFTP client to create a symlink inside the chroot pointing to /, which can be used to disclose the absolute filesystem path of the SFTP root directory and of any symlink targets within it.

Defensive priority

LOW

Recommended defensive actions

  • Update to OTP 29.0.2, 28.5.0.2 or 27.3.4.13 or later.
  • Use a version of ssh 6.0.1, 5.5.2.1 or 5.2.11.8 or later.

Evidence notes

The information disclosed is the absolute filesystem path of the SFTP root directory and of any symlink targets within it.

Official resources

public