Frank Vilea Asked: 2011-11-02 05:08:44 +0800 CST2011-11-02 05:08:44 +0800 CST 2011-11-02 05:08:44 +0800 CST Security: Where are MySQL passwords stored? 772 Where are MySQL passwords stored and are they encrypted or even hashed? mysql security 3 Answers Voted Best Answer DKNUCKLES 2011-11-02T05:13:25+08:002011-11-02T05:13:25+08:00 MySQL passwords are stored in the user table of the mysql database and are encrypted using it's own algorithm. You can find more information in the MySQL documentation Matthew Scharley 2011-11-02T05:14:41+08:002011-11-02T05:14:41+08:00 MySQL passwords for users are stored within MySQL itself; they are stored in the mysql.user table. The passwords are hashed by default using the PASSWORD() function, however there are other alternatives, though none are plain-text. compcentral 2011-11-02T05:15:40+08:002011-11-02T05:15:40+08:00 I guess that you mean the database privileges... They are stored in the schema and privilege tables. More specific info is available here: http://www.grahamwideman.com/gw/tech/mysql/perms/index.htm
MySQL passwords are stored in the user table of the mysql database and are encrypted using it's own algorithm.
You can find more information in the MySQL documentation
MySQL passwords for users are stored within MySQL itself; they are stored in the
mysql.user
table. The passwords are hashed by default using thePASSWORD()
function, however there are other alternatives, though none are plain-text.I guess that you mean the database privileges... They are stored in the schema and privilege tables. More specific info is available here:
http://www.grahamwideman.com/gw/tech/mysql/perms/index.htm