Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/server/mysql/mysql-test/t/ |
Upload File : |
--source include/have_plugin_auth.inc --source include/not_embedded.inc --echo # --echo # Bug #21235226 : THE --ENABLE-CLEARTEXT-PLUGIN IS NOT IMPLEMENTED --echo # IN ALL CLIENT PROGRAMS --echo # CREATE DATABASE db21235226; USE db21235226; CREATE TABLE t1(a INT); INSERT INTO t1 VALUES (1), (2); SELECT * FROM t1; CREATE USER uplain@localhost IDENTIFIED WITH 'cleartext_plugin_server' AS 'cleartext_test'; GRANT ALL PRIVILEGES ON *.* TO uplain@localhost; #Reset the LIBMYSQL_ENABLE_CLEARTEXT_PLUGIN variable. let LIBMYSQL_ENABLE_CLEARTEXT_PLUGIN=N; #Scenario 1 : MYSQL_DUMP without --enable_cleartext_plugin # Should get CR_AUTH_PLUGIN_CANNOT_LOAD error --error 2 --exec $MYSQL_DUMP --user=uplain --password=cleartext_test --tab=$MYSQLTEST_VARDIR/tmp/ db21235226 2>&1 #Scenario 2 : MYSQL_DUMP with --enable_cleartext_plugin --exec $MYSQL_DUMP --enable_cleartext_plugin --user=uplain --password=cleartext_test --tab=$MYSQLTEST_VARDIR/tmp/ db21235226 --exec $MYSQL --enable_cleartext_plugin --user=uplain --password=cleartext_test db21235226 < $MYSQLTEST_VARDIR/tmp/t1.sql SELECT * FROM t1; #Scenario 3 : MYSQL_IMPORT without --enable_cleartext_plugin # Should get CR_AUTH_PLUGIN_CANNOT_LOAD error --replace_regex /.*mysqlimport(\.exe)*/mysqlimport/ --error 1 --exec $MYSQL_IMPORT --user=uplain --password=cleartext_test --silent db21235226 $MYSQLTEST_VARDIR/tmp/t1.txt 2>&1 #Scenario 4 : MYSQL_IMPORT with --enable_cleartext_plugin --exec $MYSQL_IMPORT --enable_cleartext_plugin --user=uplain --password=cleartext_test --silent db21235226 $MYSQLTEST_VARDIR/tmp/t1.txt SELECT * FROM t1; #Scenario 5 : MYSQL_SHOW without --enable_cleartext_plugin # Should get CR_AUTH_PLUGIN_CANNOT_LOAD error --replace_regex /.*mysqlshow(\.exe)*/mysqlshow/ --error 1 --exec $MYSQL_SHOW --user=uplain --password=cleartext_test db21235226 2>&1 #Scenario 6 : MYSQL_SHOW with --enable_cleartext_plugin --exec $MYSQL_SHOW --enable_cleartext_plugin --user=uplain --password=cleartext_test db21235226 #Scenario 7 : MYSQL_CHECK without --enable_cleartext_plugin # Should get CR_AUTH_PLUGIN_CANNOT_LOAD error --replace_regex /.*mysqlcheck(\.exe)*/mysqlcheck/ --error 2 --exec $MYSQL_CHECK --user=uplain --password=cleartext_test db21235226 t1 2>&1 #Scenario 8 : MYSQL_CHECK with --enable_cleartext_plugin --exec $MYSQL_CHECK --enable_cleartext_plugin --user=uplain --password=cleartext_test db21235226 t1 #Cleanup DROP TABLE t1; DROP DATABASE db21235226; DROP USER uplain@localhost;