mirror of
https://github.com/nsacyber/HIRS.git
synced 2025-01-16 01:39:45 +00:00
6 lines
298 B
MySQL
6 lines
298 B
MySQL
|
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
|