1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Use after free in authentication

This commit is contained in:
Sergei Golubchik
2018-04-30 23:06:09 +02:00
parent a52c46e069
commit fab383aac0
4 changed files with 20 additions and 2 deletions

View File

@ -0,0 +1,5 @@
set @old_dbug=@@global.debug_dbug;
set global debug_dbug='+d,auth_disconnect';
create user 'bad' identified by 'worse';
set global debug_dbug=@old_dbug;
drop user bad;