2013-01-25 09:41:26 +01:00
|
|
|
source include/not_embedded.inc;
|
|
|
|
|
|
|
|
#
|
|
|
|
# MDEV-3909 remote user enumeration
|
|
|
|
#
|
|
|
|
# verify that for some failed login attemps (with wrong user names)
|
|
|
|
# the server requests a plugin
|
|
|
|
#
|
2018-11-24 14:13:41 +01:00
|
|
|
create user foo identified via mysql_old_password;
|
|
|
|
create user bar identified via mysql_old_password;
|
|
|
|
create user baz identified via mysql_old_password;
|
2013-01-25 09:41:26 +01:00
|
|
|
|
|
|
|
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
|
2018-11-26 21:24:05 +01:00
|
|
|
--error ER_ACCESS_DENIED_ERROR
|
2013-01-25 09:41:26 +01:00
|
|
|
connect (fail,localhost,u1);
|
|
|
|
|
|
|
|
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
|
2018-11-26 21:24:05 +01:00
|
|
|
--error ER_SERVER_IS_IN_SECURE_AUTH_MODE
|
2020-02-19 17:50:30 +01:00
|
|
|
connect (fail,localhost,uu2);
|
2013-01-25 09:41:26 +01:00
|
|
|
|
|
|
|
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
|
2018-11-26 21:24:05 +01:00
|
|
|
--error ER_SERVER_IS_IN_SECURE_AUTH_MODE
|
2020-02-19 17:50:30 +01:00
|
|
|
connect (fail,localhost,uu2,password);
|
2013-01-25 09:41:26 +01:00
|
|
|
|
2018-11-26 21:24:05 +01:00
|
|
|
--error ER_ACCESS_DENIED_ERROR
|
2013-01-25 09:41:26 +01:00
|
|
|
change_user u1;
|
|
|
|
|
2018-11-26 21:24:05 +01:00
|
|
|
--error ER_SERVER_IS_IN_SECURE_AUTH_MODE
|
2020-02-19 17:50:30 +01:00
|
|
|
change_user uu2;
|
2013-01-25 09:41:26 +01:00
|
|
|
|
2018-11-26 21:24:05 +01:00
|
|
|
--error ER_SERVER_IS_IN_SECURE_AUTH_MODE
|
2020-02-19 17:50:30 +01:00
|
|
|
change_user uu2,password;
|
2013-01-25 09:41:26 +01:00
|
|
|
|
2018-10-17 12:48:13 +02:00
|
|
|
delete from mysql.user where plugin = 'mysql_old_password';
|
2013-01-25 09:41:26 +01:00
|
|
|
flush privileges;
|
|
|
|
|
|
|
|
|