CVE-2016-6662 MySQL
Last modified: February 22, 2024
Background Information
On 12 September, 2016, an independent researcher revealed multiple MySQL® vulnerabilities. This advisory focuses on a vulnerability with a CVEID of CVE-2016-6662 which can allow attackers to (remotely) inject malicious settings into MySQL configuration files (my.cnf
) under certain configurations, leading to critical consequences.
More information on MySQL can be found on the following websites:
MySQL derivatives are also affected, including:
Impact
The vulnerability affects all MySQL servers in the default configuration in all version branches (5.7, 5.6, and 5.5) including the latest versions, and can be exploited by both local and remote attackers. Both the authenticated access to MySQL databases (via network connection or web interfaces such as phpMyAdmin) and SQL Injection could be used as exploitation vectors if a MySQL user has the SUPER
privilege granted. Additionally, MySQL users with both SELECT
and FILE
privileges granted are also affected.
MySQL users created in cPanel are not granted the SUPER
or FILE
privileges, however they can be granted these elevated privileges from the root
MySQL user manually.
A successful exploitation could allow attackers to execute arbitrary code with root
privileges which would then allow them to fully compromise the server on which an affected version of MySQL or MariaDB is running.
How to determine if your server is affected.
Determine if you are running MySQL or MariaDB
You can determine if MySQL is installed by running the following command as root
:
yum list installed | grep MySQL | grep -server
MySQL56-server.x86_64 5.6.31-2.cp1156 installed
If the above command does not return any output, verify you are running MariaDB by running the following command as root
:
yum list installed | grep MariaDB | grep -server
MariaDB-server.x86_64 10.0.27-1.el7.centos @MariaDB100
MySQL
WebPros International, LLC is currently working on new versions with updated MySQL RPMs. We will update this section once new versions are available.
MariaDB
MariaDB has fixes in place for versions greater than 10.0.27 and 10.1.17. Run the following command as root
to check the MariaDB version:
rpm -q MariaDB-server
MariaDB-server-10.0.26-1.el7.centos.x86_64
Resolution
MySQL
The following table lists the MySQL versions with updated RPMs and their corresponding cPanel & WHM versions:
MySQL version | cPanel & WHM version | Documentation |
---|---|---|
5.6.32 | 58.0.30 | Changes in MySQL 5.6.33 (2016-09-06, General Availability |
5.5.52 | 58.0.30 | MySQL Community Server 5.5.52 |
MariaDB
Versions 10.0.27 and greater are protected for 10.0.x versions of MariaDB, while versions 10.1.17 are protected for 10.1.x versions of MariaDB. If you are running an older version of MariaDB, you can upgrade with the following command:
# yum update MariaDB-server MariaDB-client MariaDB-common MariaDB-devel MariaDB-shared
Mitigation
- Manual modifications to the MySQL configuration always carries risk; a qualified systems administrator is recommended.
- We strongly recommend that you backup your databases before performing any of the steps below.
In most situations, these mitigations are not necessary as unprivileged MySQL users created in cPanel & WHM do not have the SUPER
or FILE
grants.
You can check if you have MySQL accounts, other than root
, with these privileges granted manually by running the following commands as root
:
mysql mysql -e 'select User,Host from user where User != "root" and ( File_priv = "Y" or Super_priv = "Y" );'
If waiting for new cPanel versions with updated MySQL RPMs or upgrading to MariaDB is not possible, consider mitigating this issue by running the following commands as root
:
chown root:root /etc/my.cnf
chmod 0644 /etc/my.cnf
This will ensure /etc/my.cnf
is not writable by the MySQL user.
Additionally, you can touch empty root-owned files at /var/lib/mysql/my.cnf
and /var/lib/mysql/.my.cnf
to prevent MySQL users with SUPER
or FILE
privileges from potentially writing to other configuration paths that may be used on certain OS and MySQL version combinations. This may cause warnings to be logged when restarting MySQL.
touch /var/lib/mysql/my.cnf /var/lib/mysql/.my.cnf