uawdijnntqw1x1x1
IP : 216.73.217.142
Hostname : localhost.localdomain
Kernel : Linux localhost.localdomain 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
www
/
phpmyadmin
/
libraries
/
classes
/
Config
/
..
/
Controllers
/
UserPasswordController.php
/
/
<?php declare(strict_types=1); namespace PhpMyAdmin\Controllers; use PhpMyAdmin\DatabaseInterface; use PhpMyAdmin\Html\Generator; use PhpMyAdmin\Message; use PhpMyAdmin\Response; use PhpMyAdmin\Template; use PhpMyAdmin\UserPassword; /** * Displays and handles the form where the user can change their password. */ class UserPasswordController extends AbstractController { /** @var UserPassword */ private $userPassword; /** @var DatabaseInterface */ private $dbi; /** * @param Response $response * @param DatabaseInterface $dbi */ public function __construct($response, Template $template, UserPassword $userPassword, $dbi) { parent::__construct($response, $template); $this->userPassword = $userPassword; $this->dbi = $dbi; } public function index(): void { global $cfg, $hostname, $username, $password, $change_password_message, $msg; $this->addScriptFiles(['server/privileges.js']); /** * Displays an error message and exits if the user isn't allowed to use this * script */ if (! $cfg['ShowChgPassword']) { $cfg['ShowChgPassword'] = $this->dbi->selectDb('mysql'); } if ($cfg['Server']['auth_type'] === 'config' || ! $cfg['ShowChgPassword']) { $this->response->addHTML(Message::error( __('You don\'t have sufficient privileges to be here right now!') )->getDisplay()); return; } /** * If the "change password" form has been submitted, checks for valid values * and submit the query or logout */ if (isset($_POST['nopass'])) { if ($_POST['nopass'] == '1') { $password = ''; } else { $password = $_POST['pma_pw']; } $change_password_message = $this->userPassword->setChangePasswordMsg(); $msg = $change_password_message['msg']; if (! $change_password_message['error']) { $sql_query = $this->userPassword->changePassword($password); if ($this->response->isAjax()) { $sql_query = Generator::getMessage($change_password_message['msg'], $sql_query, 'success'); $this->response->addJSON('message', $sql_query); return; } $this->response->addHTML('<h1>' . __('Change password') . '</h1>' . "\n\n"); $this->response->addHTML(Generator::getMessage($msg, $sql_query, 'success')); $this->render('user_password'); return; } if ($this->response->isAjax()) { $this->response->addJSON('message', $change_password_message['msg']); $this->response->setRequestStatus(false); return; } } /** * If the "change password" form hasn't been submitted or the values submitted * aren't valid -> displays the form */ // Displays an error message if required if (isset($msg)) { $this->response->addHTML($msg->getDisplay()); } $this->response->addHTML($this->userPassword->getFormForChangePassword($username, $hostname)); } }
/var/www/phpmyadmin/libraries/classes/Config/../Controllers/UserPasswordController.php