mirror of
https://github.com/nsacyber/HIRS.git
synced 2025-01-01 18:56:46 +00:00
6 lines
298 B
SQL
6 lines
298 B
SQL
UPDATE mysql.user SET Password=PASSWORD('root') WHERE User='root';
|
|
DELETE FROM mysql.user WHERE User='';
|
|
DELETE FROM mysql.user WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1');
|
|
DROP DATABASE IF EXISTS test;
|
|
DELETE FROM mysql.db WHERE Db='test' OR Db='test\\_%';
|
|
FLUSH PRIVILEGES |