Update website
This commit is contained in:
parent
41ce1aa076
commit
ea0eb1c6e0
4222 changed files with 721797 additions and 14 deletions
|
@ -0,0 +1,169 @@
|
|||
<?php
|
||||
/**
|
||||
* Config Authentication plugin for phpMyAdmin
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PhpMyAdmin\Plugins\Auth;
|
||||
|
||||
use PhpMyAdmin\Html\Generator;
|
||||
use PhpMyAdmin\Plugins\AuthenticationPlugin;
|
||||
use PhpMyAdmin\ResponseRenderer;
|
||||
use PhpMyAdmin\Server\Select;
|
||||
use PhpMyAdmin\Util;
|
||||
|
||||
use function __;
|
||||
use function count;
|
||||
use function defined;
|
||||
use function sprintf;
|
||||
use function trigger_error;
|
||||
|
||||
use const E_USER_NOTICE;
|
||||
use const E_USER_WARNING;
|
||||
|
||||
/**
|
||||
* Handles the config authentication method
|
||||
*/
|
||||
class AuthenticationConfig extends AuthenticationPlugin
|
||||
{
|
||||
/**
|
||||
* Displays authentication form
|
||||
*
|
||||
* @return bool always true
|
||||
*/
|
||||
public function showLoginForm(): bool
|
||||
{
|
||||
$response = ResponseRenderer::getInstance();
|
||||
if ($response->isAjax()) {
|
||||
$response->setRequestStatus(false);
|
||||
// reload_flag removes the token parameter from the URL and reloads
|
||||
$response->addJSON('reload_flag', '1');
|
||||
if (defined('TESTSUITE')) {
|
||||
return true;
|
||||
}
|
||||
|
||||
exit;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets authentication credentials
|
||||
*
|
||||
* @return bool always true
|
||||
*/
|
||||
public function readCredentials(): bool
|
||||
{
|
||||
if ($GLOBALS['token_provided'] && $GLOBALS['token_mismatch']) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->user = $GLOBALS['cfg']['Server']['user'];
|
||||
$this->password = $GLOBALS['cfg']['Server']['password'];
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* User is not allowed to login to MySQL -> authentication failed
|
||||
*
|
||||
* @param string $failure String describing why authentication has failed
|
||||
*/
|
||||
public function showFailure($failure): void
|
||||
{
|
||||
global $dbi;
|
||||
|
||||
parent::showFailure($failure);
|
||||
$conn_error = $dbi->getError();
|
||||
if (! $conn_error) {
|
||||
$conn_error = __('Cannot connect: invalid settings.');
|
||||
}
|
||||
|
||||
/* HTML header */
|
||||
$response = ResponseRenderer::getInstance();
|
||||
$response->getFooter()
|
||||
->setMinimal();
|
||||
$header = $response->getHeader();
|
||||
$header->setBodyId('loginform');
|
||||
$header->setTitle(__('Access denied!'));
|
||||
$header->disableMenuAndConsole();
|
||||
echo '<br><br>
|
||||
<div class="text-center">
|
||||
<h1>';
|
||||
echo sprintf(__('Welcome to %s'), ' phpMyAdmin ');
|
||||
echo '</h1>
|
||||
</div>
|
||||
<br>
|
||||
<table class="table table-borderless text-start w-75 mx-auto">
|
||||
<tr>
|
||||
<td>';
|
||||
if (isset($GLOBALS['allowDeny_forbidden']) && $GLOBALS['allowDeny_forbidden']) {
|
||||
trigger_error(__('Access denied!'), E_USER_NOTICE);
|
||||
} else {
|
||||
// Check whether user has configured something
|
||||
if ($GLOBALS['config']->sourceMtime == 0) {
|
||||
echo '<p>' , sprintf(
|
||||
__(
|
||||
'You probably did not create a configuration file.'
|
||||
. ' You might want to use the %1$ssetup script%2$s to'
|
||||
. ' create one.'
|
||||
),
|
||||
'<a href="setup/">',
|
||||
'</a>'
|
||||
) , '</p>' , "\n";
|
||||
} elseif (
|
||||
! isset($GLOBALS['errno'])
|
||||
|| (isset($GLOBALS['errno']) && $GLOBALS['errno'] != 2002)
|
||||
&& $GLOBALS['errno'] != 2003
|
||||
) {
|
||||
// if we display the "Server not responding" error, do not confuse
|
||||
// users by telling them they have a settings problem
|
||||
// (note: it's true that they could have a badly typed host name,
|
||||
// but anyway the current message tells that the server
|
||||
// rejected the connection, which is not really what happened)
|
||||
// 2002 is the error given by mysqli
|
||||
// 2003 is the error given by mysql
|
||||
trigger_error(
|
||||
__(
|
||||
'phpMyAdmin tried to connect to the MySQL server, and the'
|
||||
. ' server rejected the connection. You should check the'
|
||||
. ' host, username and password in your configuration and'
|
||||
. ' make sure that they correspond to the information given'
|
||||
. ' by the administrator of the MySQL server.'
|
||||
),
|
||||
E_USER_WARNING
|
||||
);
|
||||
}
|
||||
|
||||
echo Generator::mysqlDie($conn_error, '', true, '', false);
|
||||
}
|
||||
|
||||
$GLOBALS['errorHandler']->dispUserErrors();
|
||||
echo '</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>' , "\n";
|
||||
echo '<a href="'
|
||||
, Util::getScriptNameForOption($GLOBALS['cfg']['DefaultTabServer'], 'server')
|
||||
, '" class="btn btn-primary mt-1 mb-1 disableAjax">'
|
||||
, __('Retry to connect')
|
||||
, '</a>' , "\n";
|
||||
echo '</td>
|
||||
</tr>' , "\n";
|
||||
if (count($GLOBALS['cfg']['Servers']) > 1) {
|
||||
// offer a chance to login to other servers if the current one failed
|
||||
echo '<tr>' , "\n";
|
||||
echo ' <td>' , "\n";
|
||||
echo Select::render(true, true);
|
||||
echo ' </td>' , "\n";
|
||||
echo '</tr>' , "\n";
|
||||
}
|
||||
|
||||
echo '</table>' , "\n";
|
||||
if (! defined('TESTSUITE')) {
|
||||
exit;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,702 @@
|
|||
<?php
|
||||
/**
|
||||
* Cookie Authentication plugin for phpMyAdmin
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PhpMyAdmin\Plugins\Auth;
|
||||
|
||||
use PhpMyAdmin\Config;
|
||||
use PhpMyAdmin\Core;
|
||||
use PhpMyAdmin\LanguageManager;
|
||||
use PhpMyAdmin\Message;
|
||||
use PhpMyAdmin\Plugins\AuthenticationPlugin;
|
||||
use PhpMyAdmin\ResponseRenderer;
|
||||
use PhpMyAdmin\Server\Select;
|
||||
use PhpMyAdmin\Session;
|
||||
use PhpMyAdmin\Url;
|
||||
use PhpMyAdmin\Util;
|
||||
use PhpMyAdmin\Utils\SessionCache;
|
||||
use ReCaptcha;
|
||||
use Throwable;
|
||||
|
||||
use function __;
|
||||
use function array_keys;
|
||||
use function base64_decode;
|
||||
use function base64_encode;
|
||||
use function count;
|
||||
use function defined;
|
||||
use function explode;
|
||||
use function function_exists;
|
||||
use function in_array;
|
||||
use function ini_get;
|
||||
use function intval;
|
||||
use function is_array;
|
||||
use function is_string;
|
||||
use function json_decode;
|
||||
use function json_encode;
|
||||
use function mb_strlen;
|
||||
use function mb_substr;
|
||||
use function preg_match;
|
||||
use function random_bytes;
|
||||
use function session_id;
|
||||
use function sodium_crypto_secretbox;
|
||||
use function sodium_crypto_secretbox_open;
|
||||
use function strlen;
|
||||
use function time;
|
||||
|
||||
use const SODIUM_CRYPTO_SECRETBOX_KEYBYTES;
|
||||
use const SODIUM_CRYPTO_SECRETBOX_NONCEBYTES;
|
||||
|
||||
/**
|
||||
* Handles the cookie authentication method
|
||||
*/
|
||||
class AuthenticationCookie extends AuthenticationPlugin
|
||||
{
|
||||
/**
|
||||
* Displays authentication form
|
||||
*
|
||||
* this function MUST exit/quit the application
|
||||
*
|
||||
* @global string $conn_error the last connection error
|
||||
*/
|
||||
public function showLoginForm(): bool
|
||||
{
|
||||
global $conn_error, $route;
|
||||
|
||||
$response = ResponseRenderer::getInstance();
|
||||
|
||||
/**
|
||||
* When sending login modal after session has expired, send the
|
||||
* new token explicitly with the response to update the token
|
||||
* in all the forms having a hidden token.
|
||||
*/
|
||||
$session_expired = isset($_REQUEST['check_timeout']) || isset($_REQUEST['session_timedout']);
|
||||
if (! $session_expired && $response->loginPage()) {
|
||||
if (defined('TESTSUITE')) {
|
||||
return true;
|
||||
}
|
||||
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* When sending login modal after session has expired, send the
|
||||
* new token explicitly with the response to update the token
|
||||
* in all the forms having a hidden token.
|
||||
*/
|
||||
if ($session_expired) {
|
||||
$response->setRequestStatus(false);
|
||||
$response->addJSON('new_token', $_SESSION[' PMA_token ']);
|
||||
}
|
||||
|
||||
/**
|
||||
* logged_in response parameter is used to check if the login,
|
||||
* using the modal was successful after session expiration.
|
||||
*/
|
||||
if (isset($_REQUEST['session_timedout'])) {
|
||||
$response->addJSON('logged_in', 0);
|
||||
}
|
||||
|
||||
// No recall if blowfish secret is not configured as it would produce
|
||||
// garbage
|
||||
if ($GLOBALS['cfg']['LoginCookieRecall'] && ! empty($GLOBALS['cfg']['blowfish_secret'])) {
|
||||
$default_user = $this->user;
|
||||
$default_server = $GLOBALS['pma_auth_server'];
|
||||
$hasAutocomplete = true;
|
||||
} else {
|
||||
$default_user = '';
|
||||
$default_server = '';
|
||||
$hasAutocomplete = false;
|
||||
}
|
||||
|
||||
// wrap the login form in a div which overlays the whole page.
|
||||
if ($session_expired) {
|
||||
$loginHeader = $this->template->render('login/header', [
|
||||
'add_class' => ' modal_form',
|
||||
'session_expired' => 1,
|
||||
]);
|
||||
} else {
|
||||
$loginHeader = $this->template->render('login/header', [
|
||||
'add_class' => '',
|
||||
'session_expired' => 0,
|
||||
]);
|
||||
}
|
||||
|
||||
$errorMessages = '';
|
||||
// Show error message
|
||||
if (! empty($conn_error)) {
|
||||
$errorMessages = Message::rawError((string) $conn_error)->getDisplay();
|
||||
} elseif (isset($_GET['session_expired']) && intval($_GET['session_expired']) == 1) {
|
||||
$errorMessages = Message::rawError(
|
||||
__('Your session has expired. Please log in again.')
|
||||
)->getDisplay();
|
||||
}
|
||||
|
||||
$languageManager = LanguageManager::getInstance();
|
||||
$availableLanguages = [];
|
||||
if (empty($GLOBALS['cfg']['Lang']) && $languageManager->hasChoice()) {
|
||||
$availableLanguages = $languageManager->sortedLanguages();
|
||||
}
|
||||
|
||||
$serversOptions = '';
|
||||
$hasServers = count($GLOBALS['cfg']['Servers']) > 1;
|
||||
if ($hasServers) {
|
||||
$serversOptions = Select::render(false, false);
|
||||
}
|
||||
|
||||
$_form_params = [];
|
||||
if (isset($route)) {
|
||||
$_form_params['route'] = $route;
|
||||
}
|
||||
|
||||
if (strlen($GLOBALS['db'])) {
|
||||
$_form_params['db'] = $GLOBALS['db'];
|
||||
}
|
||||
|
||||
if (strlen($GLOBALS['table'])) {
|
||||
$_form_params['table'] = $GLOBALS['table'];
|
||||
}
|
||||
|
||||
$errors = '';
|
||||
if ($GLOBALS['errorHandler']->hasDisplayErrors()) {
|
||||
$errors = $GLOBALS['errorHandler']->getDispErrors();
|
||||
}
|
||||
|
||||
// close the wrapping div tag, if the request is after session timeout
|
||||
if ($session_expired) {
|
||||
$loginFooter = $this->template->render('login/footer', ['session_expired' => 1]);
|
||||
} else {
|
||||
$loginFooter = $this->template->render('login/footer', ['session_expired' => 0]);
|
||||
}
|
||||
|
||||
$configFooter = Config::renderFooter();
|
||||
|
||||
echo $this->template->render('login/form', [
|
||||
'login_header' => $loginHeader,
|
||||
'is_demo' => $GLOBALS['cfg']['DBG']['demo'],
|
||||
'error_messages' => $errorMessages,
|
||||
'available_languages' => $availableLanguages,
|
||||
'is_session_expired' => $session_expired,
|
||||
'has_autocomplete' => $hasAutocomplete,
|
||||
'session_id' => session_id(),
|
||||
'is_arbitrary_server_allowed' => $GLOBALS['cfg']['AllowArbitraryServer'],
|
||||
'default_server' => $default_server,
|
||||
'default_user' => $default_user,
|
||||
'has_servers' => $hasServers,
|
||||
'server_options' => $serversOptions,
|
||||
'server' => $GLOBALS['server'],
|
||||
'lang' => $GLOBALS['lang'],
|
||||
'has_captcha' => ! empty($GLOBALS['cfg']['CaptchaApi'])
|
||||
&& ! empty($GLOBALS['cfg']['CaptchaRequestParam'])
|
||||
&& ! empty($GLOBALS['cfg']['CaptchaResponseParam'])
|
||||
&& ! empty($GLOBALS['cfg']['CaptchaLoginPrivateKey'])
|
||||
&& ! empty($GLOBALS['cfg']['CaptchaLoginPublicKey']),
|
||||
'use_captcha_checkbox' => ($GLOBALS['cfg']['CaptchaMethod'] ?? '') === 'checkbox',
|
||||
'captcha_api' => $GLOBALS['cfg']['CaptchaApi'],
|
||||
'captcha_req' => $GLOBALS['cfg']['CaptchaRequestParam'],
|
||||
'captcha_resp' => $GLOBALS['cfg']['CaptchaResponseParam'],
|
||||
'captcha_key' => $GLOBALS['cfg']['CaptchaLoginPublicKey'],
|
||||
'form_params' => $_form_params,
|
||||
'errors' => $errors,
|
||||
'login_footer' => $loginFooter,
|
||||
'config_footer' => $configFooter,
|
||||
]);
|
||||
|
||||
if (! defined('TESTSUITE')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets authentication credentials
|
||||
*
|
||||
* this function DOES NOT check authentication - it just checks/provides
|
||||
* authentication credentials required to connect to the MySQL server
|
||||
* usually with $dbi->connect()
|
||||
*
|
||||
* it returns false if something is missing - which usually leads to
|
||||
* showLoginForm() which displays login form
|
||||
*
|
||||
* it returns true if all seems ok which usually leads to auth_set_user()
|
||||
*
|
||||
* it directly switches to showFailure() if user inactivity timeout is reached
|
||||
*/
|
||||
public function readCredentials(): bool
|
||||
{
|
||||
global $conn_error;
|
||||
|
||||
// Initialization
|
||||
/**
|
||||
* @global $GLOBALS['pma_auth_server'] the user provided server to
|
||||
* connect to
|
||||
*/
|
||||
$GLOBALS['pma_auth_server'] = '';
|
||||
|
||||
$this->user = $this->password = '';
|
||||
$GLOBALS['from_cookie'] = false;
|
||||
|
||||
if (isset($_POST['pma_username']) && strlen($_POST['pma_username']) > 0) {
|
||||
// Verify Captcha if it is required.
|
||||
if (
|
||||
! empty($GLOBALS['cfg']['CaptchaApi'])
|
||||
&& ! empty($GLOBALS['cfg']['CaptchaRequestParam'])
|
||||
&& ! empty($GLOBALS['cfg']['CaptchaResponseParam'])
|
||||
&& ! empty($GLOBALS['cfg']['CaptchaLoginPrivateKey'])
|
||||
&& ! empty($GLOBALS['cfg']['CaptchaLoginPublicKey'])
|
||||
) {
|
||||
if (empty($_POST[$GLOBALS['cfg']['CaptchaResponseParam']])) {
|
||||
$conn_error = __('Missing reCAPTCHA verification, maybe it has been blocked by adblock?');
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
$captchaSiteVerifyURL = $GLOBALS['cfg']['CaptchaSiteVerifyURL'] ?? '';
|
||||
$captchaSiteVerifyURL = empty($captchaSiteVerifyURL) ? null : $captchaSiteVerifyURL;
|
||||
if (function_exists('curl_init')) {
|
||||
$reCaptcha = new ReCaptcha\ReCaptcha(
|
||||
$GLOBALS['cfg']['CaptchaLoginPrivateKey'],
|
||||
new ReCaptcha\RequestMethod\CurlPost(null, $captchaSiteVerifyURL)
|
||||
);
|
||||
} elseif (ini_get('allow_url_fopen')) {
|
||||
$reCaptcha = new ReCaptcha\ReCaptcha(
|
||||
$GLOBALS['cfg']['CaptchaLoginPrivateKey'],
|
||||
new ReCaptcha\RequestMethod\Post($captchaSiteVerifyURL)
|
||||
);
|
||||
} else {
|
||||
$reCaptcha = new ReCaptcha\ReCaptcha(
|
||||
$GLOBALS['cfg']['CaptchaLoginPrivateKey'],
|
||||
new ReCaptcha\RequestMethod\SocketPost(null, $captchaSiteVerifyURL)
|
||||
);
|
||||
}
|
||||
|
||||
// verify captcha status.
|
||||
$resp = $reCaptcha->verify(
|
||||
$_POST[$GLOBALS['cfg']['CaptchaResponseParam']],
|
||||
Core::getIp()
|
||||
);
|
||||
|
||||
// Check if the captcha entered is valid, if not stop the login.
|
||||
if ($resp == null || ! $resp->isSuccess()) {
|
||||
$codes = $resp->getErrorCodes();
|
||||
|
||||
if (in_array('invalid-json', $codes)) {
|
||||
$conn_error = __('Failed to connect to the reCAPTCHA service!');
|
||||
} else {
|
||||
$conn_error = __('Entered captcha is wrong, try again!');
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// The user just logged in
|
||||
$this->user = Core::sanitizeMySQLUser($_POST['pma_username']);
|
||||
|
||||
$password = $_POST['pma_password'] ?? '';
|
||||
if (strlen($password) >= 1000) {
|
||||
$conn_error = __('Your password is too long. To prevent denial-of-service attacks, ' .
|
||||
'phpMyAdmin restricts passwords to less than 1000 characters.');
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->password = $password;
|
||||
|
||||
if ($GLOBALS['cfg']['AllowArbitraryServer'] && isset($_REQUEST['pma_servername'])) {
|
||||
if ($GLOBALS['cfg']['ArbitraryServerRegexp']) {
|
||||
$parts = explode(' ', $_REQUEST['pma_servername']);
|
||||
if (count($parts) === 2) {
|
||||
$tmp_host = $parts[0];
|
||||
} else {
|
||||
$tmp_host = $_REQUEST['pma_servername'];
|
||||
}
|
||||
|
||||
$match = preg_match($GLOBALS['cfg']['ArbitraryServerRegexp'], $tmp_host);
|
||||
if (! $match) {
|
||||
$conn_error = __('You are not allowed to log in to this MySQL server!');
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
$GLOBALS['pma_auth_server'] = Core::sanitizeMySQLHost($_REQUEST['pma_servername']);
|
||||
}
|
||||
|
||||
/* Secure current session on login to avoid session fixation */
|
||||
Session::secure();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
// At the end, try to set the $this->user
|
||||
// and $this->password variables from cookies
|
||||
|
||||
// check cookies
|
||||
$serverCookie = $GLOBALS['config']->getCookie('pmaUser-' . $GLOBALS['server']);
|
||||
if (empty($serverCookie)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$value = $this->cookieDecrypt(
|
||||
$serverCookie,
|
||||
$this->getEncryptionSecret()
|
||||
);
|
||||
|
||||
if ($value === null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->user = $value;
|
||||
// user was never logged in since session start
|
||||
if (empty($_SESSION['browser_access_time'])) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// User inactive too long
|
||||
$last_access_time = time() - $GLOBALS['cfg']['LoginCookieValidity'];
|
||||
foreach ($_SESSION['browser_access_time'] as $key => $value) {
|
||||
if ($value >= $last_access_time) {
|
||||
continue;
|
||||
}
|
||||
|
||||
unset($_SESSION['browser_access_time'][$key]);
|
||||
}
|
||||
|
||||
// All sessions expired
|
||||
if (empty($_SESSION['browser_access_time'])) {
|
||||
SessionCache::remove('is_create_db_priv');
|
||||
SessionCache::remove('is_reload_priv');
|
||||
SessionCache::remove('db_to_create');
|
||||
SessionCache::remove('dbs_where_create_table_allowed');
|
||||
SessionCache::remove('dbs_to_test');
|
||||
SessionCache::remove('db_priv');
|
||||
SessionCache::remove('col_priv');
|
||||
SessionCache::remove('table_priv');
|
||||
SessionCache::remove('proc_priv');
|
||||
|
||||
$this->showFailure('no-activity');
|
||||
if (! defined('TESTSUITE')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
// check password cookie
|
||||
$serverCookie = $GLOBALS['config']->getCookie('pmaAuth-' . $GLOBALS['server']);
|
||||
|
||||
if (empty($serverCookie)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$value = $this->cookieDecrypt(
|
||||
$serverCookie,
|
||||
$this->getSessionEncryptionSecret()
|
||||
);
|
||||
if ($value === null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$auth_data = json_decode($value, true);
|
||||
|
||||
if (! is_array($auth_data) || ! isset($auth_data['password'])) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->password = $auth_data['password'];
|
||||
if ($GLOBALS['cfg']['AllowArbitraryServer'] && ! empty($auth_data['server'])) {
|
||||
$GLOBALS['pma_auth_server'] = $auth_data['server'];
|
||||
}
|
||||
|
||||
$GLOBALS['from_cookie'] = true;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the user and password after last checkings if required
|
||||
*
|
||||
* @return bool always true
|
||||
*/
|
||||
public function storeCredentials(): bool
|
||||
{
|
||||
global $cfg;
|
||||
|
||||
if ($GLOBALS['cfg']['AllowArbitraryServer'] && ! empty($GLOBALS['pma_auth_server'])) {
|
||||
/* Allow to specify 'host port' */
|
||||
$parts = explode(' ', $GLOBALS['pma_auth_server']);
|
||||
if (count($parts) === 2) {
|
||||
$tmp_host = $parts[0];
|
||||
$tmp_port = $parts[1];
|
||||
} else {
|
||||
$tmp_host = $GLOBALS['pma_auth_server'];
|
||||
$tmp_port = '';
|
||||
}
|
||||
|
||||
if ($cfg['Server']['host'] != $GLOBALS['pma_auth_server']) {
|
||||
$cfg['Server']['host'] = $tmp_host;
|
||||
if (! empty($tmp_port)) {
|
||||
$cfg['Server']['port'] = $tmp_port;
|
||||
}
|
||||
}
|
||||
|
||||
unset($tmp_host, $tmp_port, $parts);
|
||||
}
|
||||
|
||||
return parent::storeCredentials();
|
||||
}
|
||||
|
||||
/**
|
||||
* Stores user credentials after successful login.
|
||||
*/
|
||||
public function rememberCredentials(): void
|
||||
{
|
||||
global $route;
|
||||
|
||||
// Name and password cookies need to be refreshed each time
|
||||
// Duration = one month for username
|
||||
$this->storeUsernameCookie($this->user);
|
||||
|
||||
// Duration = as configured
|
||||
// Do not store password cookie on password change as we will
|
||||
// set the cookie again after password has been changed
|
||||
if (! isset($_POST['change_pw'])) {
|
||||
$this->storePasswordCookie($this->password);
|
||||
}
|
||||
|
||||
// any parameters to pass?
|
||||
$url_params = [];
|
||||
if (isset($route)) {
|
||||
$url_params['route'] = $route;
|
||||
}
|
||||
|
||||
if (strlen($GLOBALS['db']) > 0) {
|
||||
$url_params['db'] = $GLOBALS['db'];
|
||||
}
|
||||
|
||||
if (strlen($GLOBALS['table']) > 0) {
|
||||
$url_params['table'] = $GLOBALS['table'];
|
||||
}
|
||||
|
||||
// user logged in successfully after session expiration
|
||||
if (isset($_REQUEST['session_timedout'])) {
|
||||
$response = ResponseRenderer::getInstance();
|
||||
$response->addJSON('logged_in', 1);
|
||||
$response->addJSON('success', 1);
|
||||
$response->addJSON('new_token', $_SESSION[' PMA_token ']);
|
||||
|
||||
if (! defined('TESTSUITE')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
// Set server cookies if required (once per session) and, in this case,
|
||||
// force reload to ensure the client accepts cookies
|
||||
if ($GLOBALS['from_cookie']) {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear user cache.
|
||||
*/
|
||||
Util::clearUserCache();
|
||||
|
||||
ResponseRenderer::getInstance()->disable();
|
||||
|
||||
Core::sendHeaderLocation(
|
||||
'./index.php?route=/' . Url::getCommonRaw($url_params, '&'),
|
||||
true
|
||||
);
|
||||
|
||||
if (! defined('TESTSUITE')) {
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Stores username in a cookie.
|
||||
*
|
||||
* @param string $username User name
|
||||
*/
|
||||
public function storeUsernameCookie($username): void
|
||||
{
|
||||
// Name and password cookies need to be refreshed each time
|
||||
// Duration = one month for username
|
||||
$GLOBALS['config']->setCookie(
|
||||
'pmaUser-' . $GLOBALS['server'],
|
||||
$this->cookieEncrypt(
|
||||
$username,
|
||||
$this->getEncryptionSecret()
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Stores password in a cookie.
|
||||
*
|
||||
* @param string $password Password
|
||||
*/
|
||||
public function storePasswordCookie($password): void
|
||||
{
|
||||
$payload = ['password' => $password];
|
||||
if ($GLOBALS['cfg']['AllowArbitraryServer'] && ! empty($GLOBALS['pma_auth_server'])) {
|
||||
$payload['server'] = $GLOBALS['pma_auth_server'];
|
||||
}
|
||||
|
||||
// Duration = as configured
|
||||
$GLOBALS['config']->setCookie(
|
||||
'pmaAuth-' . $GLOBALS['server'],
|
||||
$this->cookieEncrypt(
|
||||
(string) json_encode($payload),
|
||||
$this->getSessionEncryptionSecret()
|
||||
),
|
||||
null,
|
||||
(int) $GLOBALS['cfg']['LoginCookieStore']
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* User is not allowed to login to MySQL -> authentication failed
|
||||
*
|
||||
* prepares error message and switches to showLoginForm() which display the error
|
||||
* and the login form
|
||||
*
|
||||
* this function MUST exit/quit the application,
|
||||
* currently done by call to showLoginForm()
|
||||
*
|
||||
* @param string $failure String describing why authentication has failed
|
||||
*/
|
||||
public function showFailure($failure): void
|
||||
{
|
||||
global $conn_error;
|
||||
|
||||
parent::showFailure($failure);
|
||||
|
||||
// Deletes password cookie and displays the login form
|
||||
$GLOBALS['config']->removeCookie('pmaAuth-' . $GLOBALS['server']);
|
||||
|
||||
$conn_error = $this->getErrorMessage($failure);
|
||||
|
||||
$response = ResponseRenderer::getInstance();
|
||||
|
||||
// needed for PHP-CGI (not need for FastCGI or mod-php)
|
||||
$response->header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
$response->header('Pragma: no-cache');
|
||||
|
||||
$this->showLoginForm();
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns blowfish secret or generates one if needed.
|
||||
*/
|
||||
private function getEncryptionSecret(): string
|
||||
{
|
||||
/** @var mixed $key */
|
||||
$key = $GLOBALS['cfg']['blowfish_secret'] ?? null;
|
||||
if (! is_string($key)) {
|
||||
return $this->getSessionEncryptionSecret();
|
||||
}
|
||||
|
||||
$length = mb_strlen($key, '8bit');
|
||||
if ($length === SODIUM_CRYPTO_SECRETBOX_KEYBYTES) {
|
||||
return $key;
|
||||
}
|
||||
|
||||
if ($length > SODIUM_CRYPTO_SECRETBOX_KEYBYTES) {
|
||||
return mb_substr($key, 0, SODIUM_CRYPTO_SECRETBOX_KEYBYTES, '8bit');
|
||||
}
|
||||
|
||||
return $this->getSessionEncryptionSecret();
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns blowfish secret or generates one if needed.
|
||||
*/
|
||||
private function getSessionEncryptionSecret(): string
|
||||
{
|
||||
/** @var mixed $key */
|
||||
$key = $_SESSION['encryption_key'] ?? null;
|
||||
if (is_string($key) && mb_strlen($key, '8bit') === SODIUM_CRYPTO_SECRETBOX_KEYBYTES) {
|
||||
return $key;
|
||||
}
|
||||
|
||||
$key = random_bytes(SODIUM_CRYPTO_SECRETBOX_KEYBYTES);
|
||||
$_SESSION['encryption_key'] = $key;
|
||||
|
||||
return $key;
|
||||
}
|
||||
|
||||
public function cookieEncrypt(string $data, string $secret): string
|
||||
{
|
||||
try {
|
||||
$nonce = random_bytes(SODIUM_CRYPTO_SECRETBOX_NONCEBYTES);
|
||||
$ciphertext = sodium_crypto_secretbox($data, $nonce, $secret);
|
||||
} catch (Throwable $throwable) {
|
||||
return '';
|
||||
}
|
||||
|
||||
return base64_encode($nonce . $ciphertext);
|
||||
}
|
||||
|
||||
public function cookieDecrypt(string $encryptedData, string $secret): ?string
|
||||
{
|
||||
$encrypted = base64_decode($encryptedData);
|
||||
$nonce = mb_substr($encrypted, 0, SODIUM_CRYPTO_SECRETBOX_NONCEBYTES, '8bit');
|
||||
$ciphertext = mb_substr($encrypted, SODIUM_CRYPTO_SECRETBOX_NONCEBYTES, null, '8bit');
|
||||
try {
|
||||
$decrypted = sodium_crypto_secretbox_open($ciphertext, $nonce, $secret);
|
||||
} catch (Throwable $throwable) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (! is_string($decrypted)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $decrypted;
|
||||
}
|
||||
|
||||
/**
|
||||
* Callback when user changes password.
|
||||
*
|
||||
* @param string $password New password to set
|
||||
*/
|
||||
public function handlePasswordChange($password): void
|
||||
{
|
||||
$this->storePasswordCookie($password);
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform logout
|
||||
*/
|
||||
public function logOut(): void
|
||||
{
|
||||
global $config;
|
||||
|
||||
// -> delete password cookie(s)
|
||||
if ($GLOBALS['cfg']['LoginCookieDeleteAll']) {
|
||||
foreach (array_keys($GLOBALS['cfg']['Servers']) as $key) {
|
||||
$config->removeCookie('pmaAuth-' . $key);
|
||||
if (! $config->issetCookie('pmaAuth-' . $key)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$config->removeCookie('pmaAuth-' . $key);
|
||||
}
|
||||
} else {
|
||||
$cookieName = 'pmaAuth-' . $GLOBALS['server'];
|
||||
$config->removeCookie($cookieName);
|
||||
if ($config->issetCookie($cookieName)) {
|
||||
$config->removeCookie($cookieName);
|
||||
}
|
||||
}
|
||||
|
||||
parent::logOut();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,219 @@
|
|||
<?php
|
||||
/**
|
||||
* HTTP Authentication plugin for phpMyAdmin.
|
||||
* NOTE: Requires PHP loaded as a Apache module.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PhpMyAdmin\Plugins\Auth;
|
||||
|
||||
use PhpMyAdmin\Config;
|
||||
use PhpMyAdmin\Core;
|
||||
use PhpMyAdmin\Message;
|
||||
use PhpMyAdmin\Plugins\AuthenticationPlugin;
|
||||
use PhpMyAdmin\ResponseRenderer;
|
||||
|
||||
use function __;
|
||||
use function base64_decode;
|
||||
use function defined;
|
||||
use function hash_equals;
|
||||
use function preg_replace;
|
||||
use function sprintf;
|
||||
use function strcmp;
|
||||
use function strpos;
|
||||
use function substr;
|
||||
|
||||
/**
|
||||
* Handles the HTTP authentication methods
|
||||
*/
|
||||
class AuthenticationHttp extends AuthenticationPlugin
|
||||
{
|
||||
/**
|
||||
* Displays authentication form and redirect as necessary
|
||||
*
|
||||
* @return bool always true (no return indeed)
|
||||
*/
|
||||
public function showLoginForm(): bool
|
||||
{
|
||||
$response = ResponseRenderer::getInstance();
|
||||
if ($response->isAjax()) {
|
||||
$response->setRequestStatus(false);
|
||||
// reload_flag removes the token parameter from the URL and reloads
|
||||
$response->addJSON('reload_flag', '1');
|
||||
if (defined('TESTSUITE')) {
|
||||
return true;
|
||||
}
|
||||
|
||||
exit;
|
||||
}
|
||||
|
||||
return $this->authForm();
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays authentication form
|
||||
*/
|
||||
public function authForm(): bool
|
||||
{
|
||||
if (empty($GLOBALS['cfg']['Server']['auth_http_realm'])) {
|
||||
if (empty($GLOBALS['cfg']['Server']['verbose'])) {
|
||||
$server_message = $GLOBALS['cfg']['Server']['host'];
|
||||
} else {
|
||||
$server_message = $GLOBALS['cfg']['Server']['verbose'];
|
||||
}
|
||||
|
||||
$realm_message = 'phpMyAdmin ' . $server_message;
|
||||
} else {
|
||||
$realm_message = $GLOBALS['cfg']['Server']['auth_http_realm'];
|
||||
}
|
||||
|
||||
$response = ResponseRenderer::getInstance();
|
||||
|
||||
// remove non US-ASCII to respect RFC2616
|
||||
$realm_message = preg_replace('/[^\x20-\x7e]/i', '', $realm_message);
|
||||
$response->header('WWW-Authenticate: Basic realm="' . $realm_message . '"');
|
||||
$response->setHttpResponseCode(401);
|
||||
|
||||
/* HTML header */
|
||||
$footer = $response->getFooter();
|
||||
$footer->setMinimal();
|
||||
$header = $response->getHeader();
|
||||
$header->setTitle(__('Access denied!'));
|
||||
$header->disableMenuAndConsole();
|
||||
$header->setBodyId('loginform');
|
||||
|
||||
$response->addHTML('<h1>');
|
||||
$response->addHTML(sprintf(__('Welcome to %s'), ' phpMyAdmin'));
|
||||
$response->addHTML('</h1>');
|
||||
$response->addHTML('<h3>');
|
||||
$response->addHTML(
|
||||
Message::error(
|
||||
__('Wrong username/password. Access denied.')
|
||||
)->getDisplay()
|
||||
);
|
||||
$response->addHTML('</h3>');
|
||||
|
||||
$response->addHTML(Config::renderFooter());
|
||||
|
||||
if (! defined('TESTSUITE')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets authentication credentials
|
||||
*/
|
||||
public function readCredentials(): bool
|
||||
{
|
||||
// Grabs the $PHP_AUTH_USER variable
|
||||
if (isset($GLOBALS['PHP_AUTH_USER'])) {
|
||||
$this->user = $GLOBALS['PHP_AUTH_USER'];
|
||||
}
|
||||
|
||||
if (empty($this->user)) {
|
||||
if (Core::getenv('PHP_AUTH_USER')) {
|
||||
$this->user = Core::getenv('PHP_AUTH_USER');
|
||||
} elseif (Core::getenv('REMOTE_USER')) {
|
||||
// CGI, might be encoded, see below
|
||||
$this->user = Core::getenv('REMOTE_USER');
|
||||
} elseif (Core::getenv('REDIRECT_REMOTE_USER')) {
|
||||
// CGI, might be encoded, see below
|
||||
$this->user = Core::getenv('REDIRECT_REMOTE_USER');
|
||||
} elseif (Core::getenv('AUTH_USER')) {
|
||||
// WebSite Professional
|
||||
$this->user = Core::getenv('AUTH_USER');
|
||||
} elseif (Core::getenv('HTTP_AUTHORIZATION')) {
|
||||
// IIS, might be encoded, see below
|
||||
$this->user = Core::getenv('HTTP_AUTHORIZATION');
|
||||
} elseif (Core::getenv('Authorization')) {
|
||||
// FastCGI, might be encoded, see below
|
||||
$this->user = Core::getenv('Authorization');
|
||||
}
|
||||
}
|
||||
|
||||
// Grabs the $PHP_AUTH_PW variable
|
||||
if (isset($GLOBALS['PHP_AUTH_PW'])) {
|
||||
$this->password = $GLOBALS['PHP_AUTH_PW'];
|
||||
}
|
||||
|
||||
if (empty($this->password)) {
|
||||
if (Core::getenv('PHP_AUTH_PW')) {
|
||||
$this->password = Core::getenv('PHP_AUTH_PW');
|
||||
} elseif (Core::getenv('REMOTE_PASSWORD')) {
|
||||
// Apache/CGI
|
||||
$this->password = Core::getenv('REMOTE_PASSWORD');
|
||||
} elseif (Core::getenv('AUTH_PASSWORD')) {
|
||||
// WebSite Professional
|
||||
$this->password = Core::getenv('AUTH_PASSWORD');
|
||||
}
|
||||
}
|
||||
|
||||
// Sanitize empty password login
|
||||
if ($this->password === null) {
|
||||
$this->password = '';
|
||||
}
|
||||
|
||||
// Avoid showing the password in phpinfo()'s output
|
||||
unset($GLOBALS['PHP_AUTH_PW'], $_SERVER['PHP_AUTH_PW']);
|
||||
|
||||
// Decode possibly encoded information (used by IIS/CGI/FastCGI)
|
||||
// (do not use explode() because a user might have a colon in their password
|
||||
if (strcmp(substr($this->user, 0, 6), 'Basic ') == 0) {
|
||||
$usr_pass = base64_decode(substr($this->user, 6));
|
||||
if (! empty($usr_pass)) {
|
||||
$colon = strpos($usr_pass, ':');
|
||||
if ($colon) {
|
||||
$this->user = substr($usr_pass, 0, $colon);
|
||||
$this->password = substr($usr_pass, $colon + 1);
|
||||
}
|
||||
|
||||
unset($colon);
|
||||
}
|
||||
|
||||
unset($usr_pass);
|
||||
}
|
||||
|
||||
// sanitize username
|
||||
$this->user = Core::sanitizeMySQLUser($this->user);
|
||||
|
||||
// User logged out -> ensure the new username is not the same
|
||||
$old_usr = $_REQUEST['old_usr'] ?? '';
|
||||
if (! empty($old_usr) && (isset($this->user) && hash_equals($old_usr, $this->user))) {
|
||||
$this->user = '';
|
||||
}
|
||||
|
||||
// Returns whether we get authentication settings or not
|
||||
return ! empty($this->user);
|
||||
}
|
||||
|
||||
/**
|
||||
* User is not allowed to login to MySQL -> authentication failed
|
||||
*
|
||||
* @param string $failure String describing why authentication has failed
|
||||
*/
|
||||
public function showFailure($failure): void
|
||||
{
|
||||
global $dbi;
|
||||
|
||||
parent::showFailure($failure);
|
||||
$error = $dbi->getError();
|
||||
if ($error && $GLOBALS['errno'] != 1045) {
|
||||
Core::fatalError($error);
|
||||
} else {
|
||||
$this->authForm();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns URL for login form.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getLoginFormURL()
|
||||
{
|
||||
return './index.php?route=/&old_usr=' . $this->user;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,302 @@
|
|||
<?php
|
||||
/**
|
||||
* SignOn Authentication plugin for phpMyAdmin
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PhpMyAdmin\Plugins\Auth;
|
||||
|
||||
use PhpMyAdmin\Core;
|
||||
use PhpMyAdmin\Plugins\AuthenticationPlugin;
|
||||
use PhpMyAdmin\ResponseRenderer;
|
||||
use PhpMyAdmin\Util;
|
||||
|
||||
use function __;
|
||||
use function array_merge;
|
||||
use function defined;
|
||||
use function file_exists;
|
||||
use function in_array;
|
||||
use function session_get_cookie_params;
|
||||
use function session_id;
|
||||
use function session_name;
|
||||
use function session_set_cookie_params;
|
||||
use function session_start;
|
||||
use function session_write_close;
|
||||
use function version_compare;
|
||||
|
||||
use const PHP_VERSION;
|
||||
|
||||
/**
|
||||
* Handles the SignOn authentication method
|
||||
*/
|
||||
class AuthenticationSignon extends AuthenticationPlugin
|
||||
{
|
||||
/**
|
||||
* Displays authentication form
|
||||
*
|
||||
* @return bool always true (no return indeed)
|
||||
*/
|
||||
public function showLoginForm(): bool
|
||||
{
|
||||
ResponseRenderer::getInstance()->disable();
|
||||
unset($_SESSION['LAST_SIGNON_URL']);
|
||||
if (empty($GLOBALS['cfg']['Server']['SignonURL'])) {
|
||||
Core::fatalError('You must set SignonURL!');
|
||||
} else {
|
||||
Core::sendHeaderLocation($GLOBALS['cfg']['Server']['SignonURL']);
|
||||
}
|
||||
|
||||
if (! defined('TESTSUITE')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set cookie params
|
||||
*
|
||||
* @param array $sessionCookieParams The cookie params
|
||||
*/
|
||||
public function setCookieParams(?array $sessionCookieParams = null): void
|
||||
{
|
||||
/* Session cookie params from config */
|
||||
if ($sessionCookieParams === null) {
|
||||
$sessionCookieParams = (array) $GLOBALS['cfg']['Server']['SignonCookieParams'];
|
||||
}
|
||||
|
||||
/* Sanitize cookie params */
|
||||
$defaultCookieParams = /** @return mixed */ static function (string $key) {
|
||||
switch ($key) {
|
||||
case 'lifetime':
|
||||
return 0;
|
||||
|
||||
case 'path':
|
||||
return '/';
|
||||
|
||||
case 'domain':
|
||||
return '';
|
||||
|
||||
case 'secure':
|
||||
case 'httponly':
|
||||
return false;
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
foreach (['lifetime', 'path', 'domain', 'secure', 'httponly'] as $key) {
|
||||
if (isset($sessionCookieParams[$key])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$sessionCookieParams[$key] = $defaultCookieParams($key);
|
||||
}
|
||||
|
||||
if (
|
||||
isset($sessionCookieParams['samesite'])
|
||||
&& ! in_array($sessionCookieParams['samesite'], ['Lax', 'Strict'])
|
||||
) {
|
||||
// Not a valid value for samesite
|
||||
unset($sessionCookieParams['samesite']);
|
||||
}
|
||||
|
||||
if (version_compare(PHP_VERSION, '7.3.0', '>=')) {
|
||||
/** @psalm-suppress InvalidArgument */
|
||||
session_set_cookie_params($sessionCookieParams);
|
||||
} else {
|
||||
session_set_cookie_params(
|
||||
$sessionCookieParams['lifetime'],
|
||||
$sessionCookieParams['path'],
|
||||
$sessionCookieParams['domain'],
|
||||
$sessionCookieParams['secure'],
|
||||
$sessionCookieParams['httponly']
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets authentication credentials
|
||||
*/
|
||||
public function readCredentials(): bool
|
||||
{
|
||||
/* Check if we're using same signon server */
|
||||
$signon_url = $GLOBALS['cfg']['Server']['SignonURL'];
|
||||
if (isset($_SESSION['LAST_SIGNON_URL']) && $_SESSION['LAST_SIGNON_URL'] != $signon_url) {
|
||||
return false;
|
||||
}
|
||||
|
||||
/* Script name */
|
||||
$script_name = $GLOBALS['cfg']['Server']['SignonScript'];
|
||||
|
||||
/* Session name */
|
||||
$session_name = $GLOBALS['cfg']['Server']['SignonSession'];
|
||||
|
||||
/* Current host */
|
||||
$single_signon_host = $GLOBALS['cfg']['Server']['host'];
|
||||
|
||||
/* Current port */
|
||||
$single_signon_port = $GLOBALS['cfg']['Server']['port'];
|
||||
|
||||
/* No configuration updates */
|
||||
$single_signon_cfgupdate = [];
|
||||
|
||||
/* Handle script based auth */
|
||||
if ($script_name !== '') {
|
||||
if (! @file_exists($script_name)) {
|
||||
Core::fatalError(
|
||||
__('Can not find signon authentication script:')
|
||||
. ' ' . $script_name
|
||||
);
|
||||
}
|
||||
|
||||
include $script_name;
|
||||
|
||||
[$this->user, $this->password] = get_login_credentials($GLOBALS['cfg']['Server']['user']);
|
||||
} elseif (isset($_COOKIE[$session_name])) { /* Does session exist? */
|
||||
/* End current session */
|
||||
$old_session = session_name();
|
||||
$old_id = session_id();
|
||||
$oldCookieParams = session_get_cookie_params();
|
||||
if (! defined('TESTSUITE')) {
|
||||
session_write_close();
|
||||
}
|
||||
|
||||
/* Load single signon session */
|
||||
if (! defined('TESTSUITE')) {
|
||||
$this->setCookieParams();
|
||||
session_name($session_name);
|
||||
session_id($_COOKIE[$session_name]);
|
||||
session_start();
|
||||
}
|
||||
|
||||
/* Clear error message */
|
||||
unset($_SESSION['PMA_single_signon_error_message']);
|
||||
|
||||
/* Grab credentials if they exist */
|
||||
if (isset($_SESSION['PMA_single_signon_user'])) {
|
||||
$this->user = $_SESSION['PMA_single_signon_user'];
|
||||
}
|
||||
|
||||
if (isset($_SESSION['PMA_single_signon_password'])) {
|
||||
$this->password = $_SESSION['PMA_single_signon_password'];
|
||||
}
|
||||
|
||||
if (isset($_SESSION['PMA_single_signon_host'])) {
|
||||
$single_signon_host = $_SESSION['PMA_single_signon_host'];
|
||||
}
|
||||
|
||||
if (isset($_SESSION['PMA_single_signon_port'])) {
|
||||
$single_signon_port = $_SESSION['PMA_single_signon_port'];
|
||||
}
|
||||
|
||||
if (isset($_SESSION['PMA_single_signon_cfgupdate'])) {
|
||||
$single_signon_cfgupdate = $_SESSION['PMA_single_signon_cfgupdate'];
|
||||
}
|
||||
|
||||
/* Also get token as it is needed to access subpages */
|
||||
if (isset($_SESSION['PMA_single_signon_token'])) {
|
||||
/* No need to care about token on logout */
|
||||
$pma_token = $_SESSION['PMA_single_signon_token'];
|
||||
}
|
||||
|
||||
$HMACSecret = Util::generateRandom(16);
|
||||
if (isset($_SESSION['PMA_single_signon_HMAC_secret'])) {
|
||||
$HMACSecret = $_SESSION['PMA_single_signon_HMAC_secret'];
|
||||
}
|
||||
|
||||
/* End single signon session */
|
||||
if (! defined('TESTSUITE')) {
|
||||
session_write_close();
|
||||
}
|
||||
|
||||
/* Restart phpMyAdmin session */
|
||||
if (! defined('TESTSUITE')) {
|
||||
$this->setCookieParams($oldCookieParams);
|
||||
if ($old_session !== false) {
|
||||
session_name($old_session);
|
||||
}
|
||||
|
||||
if (! empty($old_id)) {
|
||||
session_id($old_id);
|
||||
}
|
||||
|
||||
session_start();
|
||||
}
|
||||
|
||||
/* Set the single signon host */
|
||||
$GLOBALS['cfg']['Server']['host'] = $single_signon_host;
|
||||
|
||||
/* Set the single signon port */
|
||||
$GLOBALS['cfg']['Server']['port'] = $single_signon_port;
|
||||
|
||||
/* Configuration update */
|
||||
$GLOBALS['cfg']['Server'] = array_merge($GLOBALS['cfg']['Server'], $single_signon_cfgupdate);
|
||||
|
||||
/* Restore our token */
|
||||
if (! empty($pma_token)) {
|
||||
$_SESSION[' PMA_token '] = $pma_token;
|
||||
$_SESSION[' HMAC_secret '] = $HMACSecret;
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear user cache.
|
||||
*/
|
||||
Util::clearUserCache();
|
||||
}
|
||||
|
||||
// Returns whether we get authentication settings or not
|
||||
if (empty($this->user)) {
|
||||
unset($_SESSION['LAST_SIGNON_URL']);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
$_SESSION['LAST_SIGNON_URL'] = $GLOBALS['cfg']['Server']['SignonURL'];
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* User is not allowed to login to MySQL -> authentication failed
|
||||
*
|
||||
* @param string $failure String describing why authentication has failed
|
||||
*/
|
||||
public function showFailure($failure): void
|
||||
{
|
||||
parent::showFailure($failure);
|
||||
|
||||
/* Session name */
|
||||
$session_name = $GLOBALS['cfg']['Server']['SignonSession'];
|
||||
|
||||
/* Does session exist? */
|
||||
if (isset($_COOKIE[$session_name])) {
|
||||
if (! defined('TESTSUITE')) {
|
||||
/* End current session */
|
||||
session_write_close();
|
||||
|
||||
/* Load single signon session */
|
||||
$this->setCookieParams();
|
||||
session_name($session_name);
|
||||
session_id($_COOKIE[$session_name]);
|
||||
session_start();
|
||||
}
|
||||
|
||||
/* Set error message */
|
||||
$_SESSION['PMA_single_signon_error_message'] = $this->getErrorMessage($failure);
|
||||
}
|
||||
|
||||
$this->showLoginForm();
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns URL for login form.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getLoginFormURL()
|
||||
{
|
||||
return $GLOBALS['cfg']['Server']['SignonURL'];
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue