phpmyadmin/libraries/classes/UserPassword.php
Kamil Tekiela 0e876b1774 Replace escapeString with quoteString
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
2023-02-10 16:20:14 -03:00

217 lines
7.1 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin;
use PhpMyAdmin\Html\Generator;
use PhpMyAdmin\Plugins\AuthenticationPluginFactory;
use PhpMyAdmin\Query\Compatibility;
use PhpMyAdmin\Server\Privileges;
use function __;
use function strlen;
/**
* Functions for user password
*/
class UserPassword
{
/** @var Privileges */
private $serverPrivileges;
/** @var AuthenticationPluginFactory */
private $authPluginFactory;
/** @var DatabaseInterface */
private $dbi;
public function __construct(
Privileges $serverPrivileges,
AuthenticationPluginFactory $authPluginFactory,
DatabaseInterface $dbi
) {
$this->serverPrivileges = $serverPrivileges;
$this->authPluginFactory = $authPluginFactory;
$this->dbi = $dbi;
}
/**
* Generate the message
*
* @return array error value and message
*/
public function setChangePasswordMsg(string $pmaPw, string $pmaPw2, bool $skipPassword)
{
$error = false;
$message = Message::success(__('The profile has been updated.'));
if ($skipPassword === false) {
if (strlen($pmaPw) === 0 || strlen($pmaPw2) === 0) {
$message = Message::error(__('The password is empty!'));
$error = true;
} elseif ($pmaPw !== $pmaPw2) {
$message = Message::error(
__('The passwords aren\'t the same!')
);
$error = true;
} elseif (strlen($pmaPw) > 256) {
$message = Message::error(__('Password is too long!'));
$error = true;
}
}
return [
'error' => $error,
'msg' => $message,
];
}
/**
* Change the password
*
* @param string $password New password
*/
public function changePassword($password, ?string $authenticationPlugin): string
{
$hashing_function = $this->changePassHashingFunction($authenticationPlugin);
[$username, $hostname] = $this->dbi->getCurrentUserAndHost();
$serverVersion = $this->dbi->getVersion();
if ($authenticationPlugin !== null && $authenticationPlugin !== '' && $authenticationPlugin !== '0') {
$orig_auth_plugin = $authenticationPlugin;
} else {
$orig_auth_plugin = $this->serverPrivileges->getCurrentAuthenticationPlugin($username, $hostname);
}
$sql_query = 'SET password = '
. ($password == '' ? '\'\'' : $hashing_function . '(\'***\')');
$isPerconaOrMySql = Compatibility::isMySqlOrPerconaDb();
if ($isPerconaOrMySql && $serverVersion >= 50706) {
$sql_query = 'ALTER USER ' . $this->dbi->quoteString($username)
. '@' . $this->dbi->quoteString($hostname)
. ' IDENTIFIED WITH ' . $orig_auth_plugin . ' BY '
. ($password == '' ? '\'\'' : '\'***\'');
} elseif (
($isPerconaOrMySql && $serverVersion >= 50507)
|| (Compatibility::isMariaDb() && $serverVersion >= 50200)
) {
// For MySQL and Percona versions 5.5.7+ and MariaDB versions 5.2+,
// explicitly set value of `old_passwords` so that
// it does not give an error while using
// the PASSWORD() function
if ($orig_auth_plugin === 'sha256_password') {
$value = 2;
} else {
$value = 0;
}
$this->dbi->tryQuery('SET `old_passwords` = ' . $value . ';');
}
$this->changePassUrlParamsAndSubmitQuery(
$username,
$hostname,
$password,
$sql_query,
$hashing_function,
$orig_auth_plugin
);
$authPlugin = $this->authPluginFactory->create();
$authPlugin->handlePasswordChange($password);
return $sql_query;
}
private function changePassHashingFunction(?string $authenticationPlugin): string
{
if ($authenticationPlugin === 'mysql_old_password') {
return 'OLD_PASSWORD';
}
return 'PASSWORD';
}
/**
* Changes password for a user
*
* @param string $username Username
* @param string $hostname Hostname
* @param string $password Password
* @param string $sql_query SQL query
* @param string $hashing_function Hashing function
* @param string $orig_auth_plugin Original Authentication Plugin
*/
private function changePassUrlParamsAndSubmitQuery(
$username,
$hostname,
$password,
$sql_query,
$hashing_function,
$orig_auth_plugin
): void {
$err_url = Url::getFromRoute('/user-password');
$serverVersion = $this->dbi->getVersion();
if (Compatibility::isMySqlOrPerconaDb() && $serverVersion >= 50706) {
$local_query = 'ALTER USER ' . $this->dbi->quoteString($username)
. '@' . $this->dbi->quoteString($hostname)
. ' IDENTIFIED with ' . $orig_auth_plugin . ' BY '
. $this->dbi->quoteString($password);
} elseif (
Compatibility::isMariaDb()
&& $serverVersion >= 50200
&& $serverVersion < 100100
&& $orig_auth_plugin !== ''
) {
if ($orig_auth_plugin === 'mysql_native_password') {
// Set the hashing method used by PASSWORD()
// to be 'mysql_native_password' type
$this->dbi->tryQuery('SET old_passwords = 0;');
} elseif ($orig_auth_plugin === 'sha256_password') {
// Set the hashing method used by PASSWORD()
// to be 'sha256_password' type
$this->dbi->tryQuery('SET `old_passwords` = 2;');
}
$hashedPassword = $this->serverPrivileges->getHashedPassword($_POST['pma_pw']);
$local_query = 'UPDATE `mysql`.`user` SET'
. " `authentication_string` = '" . $hashedPassword
. "', `Password` = '', "
. ' `plugin` = ' . $this->dbi->quoteString($orig_auth_plugin)
. ' WHERE `User` = ' . $this->dbi->quoteString($username)
. ' AND Host = ' . $this->dbi->quoteString($hostname) . ';';
} else {
$local_query = 'SET password = ' . ($password == ''
? '\'\''
: $hashing_function . '(' . $this->dbi->quoteString($password) . ')');
}
if (! @$this->dbi->tryQuery($local_query)) {
Generator::mysqlDie(
$this->dbi->getError(),
$sql_query,
false,
$err_url
);
}
// Flush privileges after successful password change
$this->dbi->tryQuery('FLUSH PRIVILEGES;');
}
/**
* @psalm-param non-empty-string $route
*/
public function getFormForChangePassword(?string $username, ?string $hostname, string $route): string
{
return $this->serverPrivileges->getFormForChangePassword($username ?? '', $hostname ?? '', false, $route);
}
}