In this blog post, I will discuss the CVE-2016-6662 vulnerability, how to tell if it affects you, and how to prevent the vulnerability from affecting you if you have an older version of MySQL.
I’ll also list which MySQL versions include the vulnerability fixes.
As we announced in a previous post, there are certain scenarios in Percona Server (and MySQL) that can allow a remote root code execution (CVE-2016-6662).
The website legalhackers.com contains the full, current explanation of the CVE-2016-6662 vulnerability.
To summarize, the methods used to gain root privileges require multiple conditions:
MySQL seems to have already released versions that include the security fixes.
This is coming from the release notes in MySQL 5.6.33:
--malloc-lib now must be one of the directories /usr/lib, /usr/lib64, /usr/lib/i386-linux-gnu, or /usr/lib/x86_64-linux-gnu. In addition, the --mysqld and --mysqld-version options can be used only on the command line and not in an option file. (Bug #24464380)
.ini or .cnf that later could be parsed as option files. The general query log and slow query log can no longer be written to a file ending with .ini or .cnf. (Bug #24388753)
REPAIR TABLE used temporary files. (Bug #24388746)You aren’t affected if you use version 5.5.52, 5.6.33 or 5.7.15.
Release notes: 5.5.52, 5.6.33, 5.7.15
The way Percona increased security was by limiting which libraries are allowed to be loaded with LD_PRELOAD (including --malloc-lib), and limiting them to /usr/lib/, /usr/lib64 and the MySQL installation base directory.
This means only locations that are accessible by root users can load shared libraries.
The following Percona Server versions have this fix:
We are working on releasing new Percona XtraDB Cluster versions as well.
Future Percona Server releases will include all fixes from MySQL.
MariaDB has fixed the issue in 5.5.51, 10.1.17 and 10.0.27
It is possible to change the database configuration so that it isn’t affected anymore (without changing your MySQL versions and restarting your database). There are several options, each of them focusing on one of the conditions required for the vulnerability to work.
Just before publishing this, a blogpost came out with another alternative on how to patch your server: https://www.psce.com/blog/2016/09/12/how-to-quickly-patch-mysql-server-against-cve-2016-6662/.
One way to avoid the vulnerability is making sure no remote user has SUPER or FILE privileges.
However, CVE-2016-6663 mentions there is a way to do this without any FILE privileges (likely related to the REPAIR TABLE issue mentioned in MySQL release notes).
The vulnerability needs to be able to write to some MySQL configuration files. Prevent that and you are secure.
Make sure you configure permissions for various config files as follows:
Resources
RELATED POSTS
Thankyou for distilling the vulnerability down to a simple checklist. Really useful summary!
One important correction – if you change ownership of my.cnf to root, the permission needs to be 644 so that the mysql user can read the file and load the variables. This was the case with FreeBSD 10.2 and MySQL 5.6.30
It was not necessary for me to have
0644permissions on Centos7 with Percona Server 5.6.*, but in some cases as you mentioned it might be a problem.I’ve changed it from
0600to0644.Do you know if MariaDB is affected by the same vulnerability? My server can’t be accessed remotely unless they come in through my web nodes.
Yes, MariaDB is also affected. I wrote a blog post about it the other day, which you can find here: https://mariadb.org/mariadb-server-versions-remote-root-code-execution-vulnerability-cve-2016-6662/
I just ran an update on my Debian install and the version reported is 10.0.26 still, even though there was an update for the MariaDB client and server that ran. Has Debian pushed packages out yet after Aug 25 update?
If you want to keep my.cnf only readable by MySQL (and nobody else) and not writeable by MySQL, you can always do:
chmod 640 my.cnf
chown root:mysql my.cnf
you login as root? ouch
From what i get its only version 5.5, 5.6 and 5.7 thats affected ?? im running 5.1.x and from what i can gather of information im not affected – or am i wrong on that assumption?
Hi! I’m interesting the same question. Is 5.1 branch also affected?
I use CentOS 6.6 and in repository exists only this version of MySQL.
If you have upgraded and restarted mysqld, then see what select @@VERSION says
Some repository maintainers do not bump the stated version number when they are backporting fixes (ie redhat are notable for this)
Sorry, ignore this. I replied to the wrong comment 🙂
If you have upgraded and restarted mysqld, then see what select @@VERSION says
Some repository maintainers do not bump the stated version number when they are backporting fixes (ie redhat are notable for this)
Still says 10.0.26-MariaDB-0+deb8u1, I’m not worried though. the only way anyone can get in my server is if they hold a gun to my head since I’ve locked down all of it. Each database has their own user and root is disabled. The machine running the DB isn’t visible to the internet at all. So I’m going to leave it for now, did the upgrade, no version to go with it, so meh.
It states, You aren’t affected if you use version 5.5.52, 5.6.33 or 5.7.15.
So i read it like, all other versions are affected.. Anyway i did both the suggestions to be sure..
1. Create an (empty) my.cnf and .my.cnf in the datadir (usually /var/lib/mysql) and make root the owner/group with 0644 permissions.
2. Added the suggestions to file /usr/bin/mysqld_safe
as discribed here.
https://www.psce.com/blog/2016/09/12/how-to-quickly-patch-mysql-server-against-cve-2016-6662/
5.1 seems unaffected by this as
mysqld_safe.shdoes not have the--malloc-libconfiguration option and does not containLD_PRELOADrelated code: Source Code: https://github.com/percona/percona-server/blob/5.1/Percona-Server/scripts/mysqld_safe.shThanks!
On the same line with Bernhard, It states, You aren’t affected if you use version 5.5.52, 5.6.33 or 5.7.15. But report on legalhackers.com says those are affected versions. Do you want to say other way round?
The fixed versions in Percona Server and Oracle MySQL contain code changes that disallow loading shared libraries from non standard directories (allows
/usr/lib,/usr/lib64…). These directories require root access and are not writeable by the mysql user so it requires another vulnerability to be able to get the shared libraries written to those paths.This means the vulnerability mentioned in CVE-2016-6662 is not exploitable on these versions.
The information on http://legalhackers.com/advisories/MySQL-Exploit-Remote-Root-Code-Execution-Privesc-CVE-2016-6662.html must have a slight bug where it should be
<instead of<=If I haven’t missed something, then the patch by percona isn’t fixing the issue with non standard directories.
It’s supposed to limit preloading libraries to /usr/lib64 and /usr/lib but as far as I can see you can use “dot dot” escaping to supply a path outside these libraries.
/Patrick
Patrick, we have reviewed the changes and you are indeed correct. The wildcard matching on /{libdir}/* will allow for parent directories to be appended to the library path spec. We will be releasing a fix for this. Nice catch! Thank you!
Thank you for the excellent explanation, Kenny. For those interested, I’ve put a simple Ansible playbook to patch mysqld_safe at https://github.com/meersjo/ansible-mysql-cve-2016-6662 .
So, If I am NOT running mysqld_safe (instead running default Mysqld on windows), am I affected by this CVE?
Thanks
Yes, the vulnerability is really in the MySQL server itself, which allows malicious code to write out files it shouldn’t be able to. If it can modify your configuration to include a malicious plugin, you are vulnerable. The mysqld_safe patch is really just a workaround to filter those out.
(reposting as reply to post)
Hi,
The vulnerability of MySQL on windows system should be effective?
This blog is the general information for the feature. You got a good work for these blog.We have a developing our creative content of this mind.Thank you for this blog. This for very interesting and useful.
https://www.gangboard.com/big-data-training/hadoop-admin-training