Secure existing MySQL installation

secure-mysql-installation
MySQL is a free, easy-to-use database server that supports multiple databases and tables, and allows clients to query them with SQL. This cheat-sheet shows how to secure MySQL in a few simple steps.

Change MySQL root password

First step to secure MySQL is changing the database superuser password, which is empty by default:

mysql> UPDATE mysql.user SET Password=PASSWORD('pa$$w0rD') WHERE User='root'; Remove unneeded databases and users

Next, remove test database:

mysql> DELETE FROM mysql.db WHERE Db='test' OR Db='test\\_%'; mysql> DROP DATABASE test;

and users:

mysql> DELETE FROM mysql.user WHERE User='root' AND Host != 'localhost'; mysql> DELETE FROM mysql.user WHERE user = '';

Finally, reload MySQL privilege information to make above changes to take effect:

mysql> FLUSH PRIVILEGES; Improve local security

MySQL config file contains several directives that can help to avoid some types of attacks. Open it and change the following values in [mysqld] section:

bind-address=127.0.0.1 local-infile=0 # avoid some Denial of Service attacks max_user_connections=256 max_connect_error=4

bind-address
Make MySQL to listen for TCP/IP connections only locally on the loop-back interface.

local-infile
Prevents against unauthorized reading from local files, useful to avoid SQL injection attacks.

max_user_connections
The maximum number of simultaneous connections allowed for a single user

max_connect_error
Block a host after this many unsuccessful connection attempts. This is especially helpful against a dictionary-based password attack. You can unblock blocked hosts with the FLUSH HOSTS statement.

Install a database firewall

GreenSQL is an Open Source database firewall used to protect databases from SQL injection attacks. It works as a proxy and has built-in support for MySQL. The logic is based on evaluation of SQL commands using a risk scoring matrix as well as blocking known db administrative commands (DROP, CREATE, etc). GreenSQL provides MySQL database security solution

Related Posts:

Sursa
2009-12-17 16:13:28



Comenteaza





Ultimele 25 posturi adăugate

23:42:26Fără Titlu —» Путепроводные Заметки
16:28:23Fără Titlu —» Путепроводные Заметки
09:44:24Spumantele din Moldova care s-au impus la CMB —» Fine Wine
08:20:44Rezidențele „No Frontier” —» Biblioteca de Arte 'Tudor Arghezi'
19:57:26Fără Titlu —» Путепроводные Заметки
14:04:54Fără Titlu —» Путепроводные Заметки
14:04:54Fără Titlu —» Путепроводные Заметки
07:38:36Alegeri | Turul doi nu există —» Curaj.TV | Media alternativă
02:50:14Fără Titlu —» Путепроводные Заметки
21:20:00Țara mea și a ta —» Doar înainte
14:58:13Fără Titlu —» Путепроводные Заметки
06:48:00STRICUL NECESAR —» Leo Butnaru
13:31:49Fără Titlu —» Путепроводные Заметки
13:31:49Fără Titlu —» Путепроводные Заметки
05:30:00Fără Titlu —» Путепроводные Заметки
05:30:00Fără Titlu —» Путепроводные Заметки
16:38:30Fără Titlu —» Путепроводные Заметки
14:52:11Fără Titlu —» Путепроводные Заметки
09:16:47Nou: Castel Mimi Rara Neagră 2024 —» Fine Wine
08:00:00SĂ FIM SERIOȘI... —» Leo Butnaru
18:33:21Discuții la festivalul de film feminist —» Curaj.TV | Media alternativă
14:19:41Fără Titlu —» Путепроводные Заметки
13:30:57#Alegeri2025Moldova: Am intrat în alegeri sau încă nu? —» Curaj.TV | Media alternativă
08:00:17A început un nou sezon de vinuri bune la Vinaria din Vale —» Fine Wine
05:25:00DIN PASIENȚE —» Leo Butnaru