Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue #5534. mysql password quoting #5536

Open
wants to merge 2 commits into
base: 12.x
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Sql/SqlMysql.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function createdbSql($dbname, $quoted = false): string

// For MariaDB, ALTER USER was introduced in version 10.2. Support
// for 10.1 ended in October 2020.
$sql[] = sprintf("ALTER USER %s IDENTIFIED BY '%s';", $user, $dbSpec['password']);
$sql[] = sprintf("ALTER USER %s IDENTIFIED BY '%s';", $user, str_replace(["\\", "'"], ["\\\\", "\\'"], $dbSpec['password']));
$sql[] = sprintf('GRANT ALL PRIVILEGES ON %s.* TO %s;', $dbname, $user);
$sql[] = 'FLUSH PRIVILEGES;';
}
Expand Down