CVE-2015-5252: High severity samba vulnerability
As per samba upstream advisory:
All versions of Samba from 3.0.0 to 4.3.2 inclusive are vulnerable to a bug in symlink verification, which under certain circumstances could allow client access to files outside the exported share path.
If a Samba share is configured with a path that shares a common path prefix with another directory on the file system, the smbd daemon may allow the client to follow a symlink pointing to a file or directory in that other directory, even if the share parameter "wide links" is set to "no" (the default).
For example. Given two directories on the file system:
/share/
/share1/
If a Samba share is created as follows:
[sharename] path = /share wide links = no
Then a symlink with the path
/share/symlink -> /share1/file
would be followed by smbd, due to the fact that only the string "/share" is checked to see if it matches the target path. This means a path that starts with "/share", such as "/share1" will also match.
The following mitigation was suggested by upstream:
Ensure all exported share paths do not share base path names with other directories on the file system.
Please note, setting the smb.conf variable "follow symlinks = no" is NOT a workaround for this problem, as this only prohibits smbd from following a symlink at the end of a path.
A symlink could be created that points to the directory which shares a base path name instead, and smbd would still follow that link. For example, with the above share definition, given a symlink of:
/share/symlink -> /share1
a client could send a relative path such as "symlink/file", which would still be followed by smbd as the end component "file" of "symlink/file" is NOT a symlink, and so is not affected by "follow symlinks = no".
Other sources
vfs.c in smbd in Samba 3.x and 4.x before 4.1.22, 4.2.x before 4.2.7, and 4.3.x before 4.3.3, when share names with certain substring relationships exist, allows remote attackers to bypass intended file-access restrictions via a symlink that points outside of a share.
— MITRE
Affected Software
Remediation
Event History
Frequently Asked Questions
What is the severity of CVE-2015-5252?
CVE-2015-5252 is rated as a medium severity vulnerability due to its potential for unauthorized access to files outside designated Samba share paths.
How do I fix CVE-2015-5252?
To fix CVE-2015-5252, upgrade your Samba installation to version 4.1.22, 4.2.7, or 4.3.3 or higher if using Red Hat, or consult your distribution's advisories for suitable patches.
What versions of Samba are affected by CVE-2015-5252?
CVE-2015-5252 affects all Samba versions from 3.0.0 up to 4.3.2 inclusive.
Does CVE-2015-5252 affect Ubuntu users?
Yes, CVE-2015-5252 can affect Ubuntu users running vulnerable versions of Samba before applying the appropriate patches.
Is there a workaround for CVE-2015-5252?
The best practice is to upgrade to a patched version, but temporarily restricting access permissions on Samba shares can act as a workaround.