MySQL security top wish list

Security seems to have no boundaries. I’ve been tightening our database security lately, and it seems like this could go on forever: from app to console to privileges to server, there are so many aspects to managing database security. Unfortunately, this is a field where MySQL is in particular weak, and with very little work done in the many years I’ve been working with MySQL.

My very own top-wanted security features for MySQL follows. Surely this is but a small subset, your mileage may vary.

Autherntication-only SSL

By default, MySQL client API is unencrypted and passwords are sent in cleartext. MySQL supports SSL, but it an “all or nothing” deal: if you want to use SSL, then everything goes by SSL: any query, SELECT, DDL and whatnot.

[UPDATE]: Thanks to Davi & Jan for correcting me on this: passwords are not sent via cleartext. I’m not sure by which constellation I saw cleartext passwords being sent — but obviously that was long time ago. Just verified via tcpdump, got “mysql_native_password” message and no cleartext password. Lesson learned!

Roles

Need I elaborate? This is a fundamental construct in a database grant system. The effort of maintaining multiple accounts with similar/identical privileges is overwhelming. (PS I haven’t used Securich to date)

Host aggregation

In MySQL the combination of user+host makes for a distinct account. Thus, ‘gromit’@’192.168.%’ is a completely different account than ‘gromit’@’10.10.%’. I get the idea: you can have more privileges to, say, gromit@localhost than for gromit@’192.%’. In practice, this only makes a headache. In all my years, I have never encountered nor designed a privilege set where two accounts of the same user had different set of privileges. Never ever ever. It is confusing and pointless: if an account has a different set of roles, just call it by another name!

Had we had roles, that would be less painful; but my opinion is that an account should be identified by user only, not by user+host. The ‘host’ part should just indicate the whitelist of machines from which the user is allowed to connect.

Host blacklist

Speaking of whitelist, it would be great to have a host blacklist. If I wanted to grant access to ‘gromit’@’192.168.%’ except for ‘192.168.10.%’ — well, I would have to whitelist all the possible subnets. I can’t exclude a set of hosts.

Catalogues

Another common construct not available in MySQL: a level above “schema” and below “server”. The need for catalogues is in particular obvious when you want to grant some user SELECT access to all your schemas. Ahem, excluding, of course, the mysql schema… If I could create a “user catalogue”, as opposed to “system catalogue”, then I would have been able to GRANT SELECT ON CATALOGUE user.* TO my_user@localhost, and this would apply to all databases in that catalogue.

Privileges auditing

I’ve spent the last week or so restricting privileges to all accounts. This is hard work, because you want to make sure you’re not revoking privileges which are required by the system (in which case I would either choose not to revoke, or create a new dedicated account with requested set of privileges). It would be so much fun if I could turn a flag on, like “SET GLOBAL audit_privileges := 1”, and have a ++counter for every time a privilege check is made per account.

I guess we could go on… On a brighter note, I’ve been using the audit plugin interface by writing a login audit plugin with very good results (= good auditing & important insights); the (simple) code will be released shortly as open source; I’ll write more on this at a later stage.

30
Leave a Reply

avatar
24 Comment threads
6 Thread replies
0 Followers
 
Most reacted comment
Hottest comment thread
8 Comment authors
Peter (Stig) EdwardsJames DayTodd FarmershlomiJoro Recent comment authors

This site uses Akismet to reduce spam. Learn how your comment data is processed.

  Subscribe  
Notify of
Davi Arnaut
Guest
Davi Arnaut

> By default, MySQL client API is unencrypted and passwords are sent in cleartext.

Are you sure about this? There is a cleartext authentication plugin, but it does not seem to be enabled by default.

Jan Kneschke
Guest
Jan Kneschke

tl;dr MySQL does *not* send password in cleartext by default at auth-time.

“mysql_native_password” is the default since MySQL 4.1 and it is a challenge/response protocol with double SHA1() to allow both sides to agree that the client knows the right password.

“mysql_old_password” was used before, uses the same style, but a weak hashing function.

MySQL 5.6 adds “sha256_password”.

Only if you explicitly tell MySQL to use “mysql_cleartext” (which is used for the PAM auth for example) the client will send the password in cleartext.

Peter Laursen
Guest

“I have never encountered nor designed a privilege set where two accounts of the same user had different set of privileges. Never ever ever”.

I have! it is quite common on ‘shared hosting’ that a customer account only has access to use a specific username. Or rather it was. I have not used traditional ‘shared hosting’ for 5 years. It is largely becoming obsolete because of the developements in the Cloud. But what about RDS etc.?

Peter Laursen
Guest

Actually I am speaking about exactly the same. I used some ‘shared hosting’ 6-8 years ago. I was given a (read: ONE and ONLY ONE) username. From a web-based ‘control panel’ I could allow access to MySQL from a number of remote hosts and define different privileges when connecting from different hosts. Even though what actually happened was tranparent to users/customers (as any direct access to the `mysql database` was denied), this means that more entries was added to the `user` table (with same ‘user’ but with different ‘host’). @Shlomi .. did you ever use ‘shared hosting’? I think not,… Read more »

Peter Laursen
Guest

Try to create a number of cheap ‘shared hosting’ accounts from this list:
http://www.whoishostingthis.com/compare/

.. and you will find similar implementations (to the extend that they allow for connections from remote hosts at all, what they not all do).

Joro
Guest

Thanks for voicing this !

Care to file a bug on deprecating the host name ? 🙂 I’d be highly interested on how popular will it get to be.
IMHO it’s one of these charming mysqlisms that will probably never go away 🙂

BTW, what you’re asking for is a subset of what’s currently implemented. Just never specify host names and it will work as you expect it to 🙂

Joro
Guest

Another question on authentication only SSL.

What’s the point ?

It’s common wisdom that the slowest part in an SSL connection is the connection establishment. Once this is done it’s just some casual symetric hash calculation that should be a problem on modern hardware.

Joro
Guest

@Shlomi. OK, so you had a separation of “user account” (a bearer of privileges) and a “login” (a user name + optional host combination) separation and allowing 1 user account to many logins. IMHO MySQL has that, but it needs some work 🙂 How about the following scheme : 1. You define all of your common privileges into “gromit@%” 2. You alter “gromit@%” so that no one can’t connect using this account (e.g. use a bad plugin) 3. You define a number of “logins”, e.g. gromit@192.168.%, gromit@10.10.%, etc that users can login with. And you end up with a white-list… Read more »

Joro
Guest

Sure, roles is better. But on the scheme of mine : wanna bet that they’ll get inherited ? 🙂

Joro
Guest

It doesn’t work only for global privileges (see below). I guess we owe each other a drink 😉 mysql> create user gromit@’%’; ————– create user gromit@’%’ ————– Query OK, 0 rows affected (0.00 sec) mysql> create database secret; ————– create database secret ————– Query OK, 1 row affected (0.00 sec) mysql> create user gromit@localhost; ————– create user gromit@localhost ————– Query OK, 0 rows affected (0.00 sec) mysql> exit; Bye d:\mysql\work\mysql-5.6\bld\mysql-test>mtcli -u gromit -h localhost Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.6.15-debug-log Source distribution Copyright (c) 2000, 2013,… Read more »

James Day
Guest

Shlomi, you probably use one of the most popular sites in the world that has different permissions for the same account: Wikipedia. There are two different systems there. The dominant single signon version has one account that is exclusive across all wikis. Permissions for the account are different on each wiki. You can be an ordinary user on one, administrator or various types of superuser on another. All from one login. The older system has completely different logins for each wiki even if the user name is the same. This allows a larger virtual namespace, so even though I could… Read more »

trackback

[…] I saw Shlomi’s recent post which asked (in part) for blacklist support in MySQL, I started thinking about ways in which this […]

Todd Farmer
Guest

Hi Shlomi,

FYI, one can implement host blacklists today:

http://mysqlblog.fivefarmers.com/2013/08/30/implementing-a-host-blacklist-with-mysql-privileges/

Be warned, though: it relies on the behavior that treats the same user as different accounts when the matching host differs. 🙂

Todd

James Day
Guest

In theory we’re all supposed to have an only my views disclaimer of similar form to the one I use, that references the correct place to go to for an official view. But it’s possible that I’m the only one of us who has both read the rule and tries to follow it a bit. 🙂 I probably wouldn’t usually want to manage most users to user-specific database accounts and that isn’t how Wikipedia does it. But I would want to split read, write and higher permissions by database account, so only the portions of the application code that need… Read more »

James Day
Guest

Re “Unfortunately, this is a field where MySQL is in particular weak, and with very little work done in the many years I’ve been working with MySQL”. I think we made that claim obsolete in 5.6. 🙂 You might find it useful to read these things: http://www.mysqlperformanceblog.com/2013/08/17/mysql-5-6-security-vs-ease-of-use/ Randomly assigned root password instead of blank, then forced to change that before you can use the account. Seems like quite an improvement. How about the password validation plugin, described at http://dev.mysql.com/doc/refman/5.6/en/validate-password-plugin.html ? Or perhaps the SHA-256 authentication plugin for more secure password hashing: http://dev.mysql.com/doc/refman/5.6/en/sha256-authentication-plugin.html ? And maybe the removal of passwords from… Read more »

James Day
Guest

Thanks. I agree that there’s still a lot to cover.

More Todd and Joro’s area than mine, though I have some input on various aspects of it and always keep my eyes open for issues or opportunities. And I try to inform and clarify.

One good question to ponder from time to time is:”how can we protect the uninformed or unlucky from attacks or issues by default, without also making life unduly hard?”

Peter (Stig) Edwards
Guest
Peter (Stig) Edwards

Hello Shlomi,
If you didn’t know already, Vicențiu Ciorbaru is working on a project to implement roles for MariaDB as part of GSoC 2013
https://mariadb.atlassian.net/browse/MDEV-4397
Mark Callaghan added a comment in MDEC-4397 pointing to https://code.google.com/p/google-mysql-tools/wiki/MysqlRoles
http://cvicentiu.wordpress.com/
https://code.launchpad.net/~cvicentiu/maria/gsoc

Todd Farmer
Guest

In thinking about roles, I remembered that Workbench has some concept of “roles”. Although it’s managed outside the database rather than inside, I think it could prove useful for managing common permissions across many user accounts. In order to do so, though, WB needs to allow users to create custom “role” definitions:

http://bugs.mysql.com/bug.php?id=70227

If you think that would be useful to you, be sure to let the WB team know.