mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
24 lines
713 B
Text
24 lines
713 B
Text
source include/not_embedded.inc;
|
|
source include/have_debug.inc;
|
|
set @old_dbug=@@global.debug_dbug;
|
|
|
|
#
|
|
# use after free if need plugin change and auth aborted
|
|
#
|
|
set global debug_dbug='+d,auth_disconnect';
|
|
create user 'bad' identified by 'worse';
|
|
--error 1
|
|
--exec $MYSQL --default-auth=mysql_old_password --user=bad --password=worse
|
|
set global debug_dbug=@old_dbug;
|
|
drop user bad;
|
|
|
|
#
|
|
# malicious server, invalid plugin name
|
|
#
|
|
set global debug_dbug='+d,auth_invalid_plugin';
|
|
create user 'bad' identified by 'worse';
|
|
--replace_regex /loaded: [^\n]*/loaded: invalid plugin name/
|
|
--error 1
|
|
--exec $MYSQL --default-auth=mysql_old_password --user=bad --password=worse 2>&1
|
|
set global debug_dbug=@old_dbug;
|
|
drop user bad;
|