-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
76 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'SqLpa5sW0rD'; | ||
'create user name identified by 'SqLpa5sW0rD' -- | ||
exec("CREATE USER ExposedTest ACCOUNT UNLOCK IDENTIFIED BY SqLpa5sW0rD"); | ||
:`CREATE USER 'haproxy'@'%' IDENTIFIED BY 'SqLpa5sW0rD';` | ||
exec("CREATE USER ExposedTest ACCOUNT UNLOCK IDENTIFIED BY SqLpa5sW0rD"); | ||
expected_statement = """CREATE USER foo WITH ENCRYPTED PASSWORD 'SqLpa5sW0rD' CREATEDB; | ||
CREATE USER $TEST_USER_NAME WITH SUPERUSER LOGIN NOINHERIT PASSWORD '$TEST_USER_PASS' CREATEROLE; -- todo filter | ||
CREATE USER foo WITH ENCRYPTED PASSWORD 'SqLpa5sW0rD' CREATEDB; | ||
ALTER LOGIN username WITH PASSWORD = 'SqLpa5sW0rD'; | ||
ALTER ROLE postgres PASSWORD 'SqLpa5sW0rD'; SELECT pg_reload_conf()" | ||
ALTER USER username WITH PASSWORD 'SqLpa5sW0rD'; | ||
CREATE LOGIN username WITH PASSWORD = 'SqLpa5sW0rD'; | ||
CREATE USER chuck WITH PASSWORD 'SqLpa5sW0rD' SUPERUSER; | ||
CREATE USER IF NOT EXISTS sandy WITH PASSWORD 'SqLpa5sW0rD' NOSUPERUSER; | ||
CREATE USER myuser WITH PASSWORD 'SqLpa5sW0rD'; | ||
CREATE USER username WITH PASSWORD 'SqLpa5sW0rD'; | ||
ALTER USER 'username'@'localhost' IDENTIFIED BY 'SqLpa5sW0rD'; | ||
ALTER USER username IDENTIFIED BY SqLpa5sW0rD; | ||
CREATE USER username IDENTIFIED BY SqLpa5sW0rD; | ||
CREATE USER 'username'@'localhost' IDENTIFIED BY 'SqLpa5sW0rD'; | ||
mysql -u root -pdbadmin -e "CREATE USER 'cactiuser'@'localhost' IDENTIFIED BY 'SqLpa5sW0rD';"– | ||
-c "CREATE ROLE scram_test login password 'SqLpa5sW0rD'" | ||
CREATE ROLE app_admin WITH LOGIN PASSWORD SqLpa5sW0rD; | ||
CREATE ROLE flask_admin_geo LOGIN PASSWORD 'SqLpa5sW0rD'; | ||
create role forum_example_postgraphile_demo login password 'SqLpa5sW0rD'; | ||
create role forum_example_postgraphile login password 'SqLpa5sW0rD'; | ||
SET PASSWORD FOR 'username'@'localhost' = PASSWORD('SqLpa5sW0rD'); | ||
insert into mysql.user values(PASSWORD('SqLpa5sW0rD') ); | ||
UPDATE mysql.user SET authentication_string = PASSWORD ('SqLpa5sW0rD') WHERE User = 'username'; | ||
"ALTER USER 'test'@'1.1.1.1' IDENTIFIED WITH 'mysql_native_password' AS '*SqLpa5sW0rD' REQUIRE NONE PASSWORD EXPIRE DEFAULT ACCOUNT UNLOCK;", | ||
sh -c 'echo CREATE USER typeorm_mg IDENTIFIED BY SqLpa5sW0rD\; >>tmp.sql;' |