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/not_embedded.inc --source include/have_ssl.inc connect (ssl_con,localhost,root,,,,,SSL); --replace_regex $ALLOWED_CIPHERS_REGEX SHOW STATUS LIKE 'Ssl_cipher'; CREATE USER 'kristofer' IDENTIFIED WITH 'sha256_password'; SET GLOBAL old_passwords= 2; SET SESSION old_passwords= 2; ALTER USER 'kristofer' IDENTIFIED BY 'secret'; connect(con1,localhost,kristofer,secret,,,,SSL); connection con1; connection ssl_con; disconnect con1; DROP USER 'kristofer'; GRANT ALL ON *.* TO 'kristofer'@'localhost' IDENTIFIED WITH 'sha256_password' BY '123'; ALTER USER 'kristofer'@'localhost' IDENTIFIED BY 'secret2'; connect(con2,localhost,kristofer,secret2,,,,SSL); connection con2; SELECT USER(),CURRENT_USER(); SHOW GRANTS FOR 'kristofer'@'localhost'; connection ssl_con; disconnect con2; DROP USER 'kristofer'@'localhost'; GRANT ALL ON *.* TO 'kristofer'@'localhost' IDENTIFIED WITH 'sha256_password' BY '123'; ALTER USER 'kristofer'@'localhost' IDENTIFIED BY ''; connect(con3,localhost,kristofer,,,,,SSL); connection con3; SELECT USER(),CURRENT_USER(); SHOW GRANTS FOR 'kristofer'@'localhost'; connection ssl_con; disconnect con3; DROP USER 'kristofer'@'localhost'; GRANT ALL ON *.* TO 'kristofer'@'33.33.33.33' IDENTIFIED WITH 'sha256_password' BY '123'; ALTER USER 'kristofer'@'33.33.33.33' IDENTIFIED BY ''; --echo Connection should fail for localhost --replace_result $MASTER_MYSOCK MASTER_MYSOCK --disable_query_log --error ER_ACCESS_DENIED_ERROR connect(con4,127.0.0.1,kristofer,,,,,SSL); --enable_query_log DROP USER 'kristofer'@'33.33.33.33'; --echo # --echo # BUG#14807074 ALTER USER PASSWORD EXPIRE VS SHA256_PASSWORD --echo # CREATE USER 'u1'@'localhost' IDENTIFIED WITH 'sha256_password'; ALTER USER 'u1'@'localhost' IDENTIFIED BY 'pass'; ALTER USER 'u1'@'localhost' PASSWORD EXPIRE; connect(con5,127.0.0.1,u1,pass,test,,,SSL); --error ER_MUST_CHANGE_PASSWORD SELECT USER(); ALTER USER 'u1'@'localhost' IDENTIFIED BY 'pass2'; connect(con6,127.0.0.1,u1,pass2,test,,,SSL); SELECT USER(); connection default; DROP USER 'u1'@'localhost'; disconnect con5; disconnect con6; # Restore default value to old_passwords SET GLOBAL old_passwords= default; connection default; disconnect ssl_con;