Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 18.117.71.244
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
stage /
phpmyadmin /
src /
Plugins /
Auth /
[ HOME SHELL ]
Name
Size
Permission
Action
AuthenticationConfig.php
5.16
KB
-rw-r--r--
AuthenticationCookie.php
22.3
KB
-rw-r--r--
AuthenticationHttp.php
6.74
KB
-rw-r--r--
AuthenticationSignon.php
8.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AuthenticationCookie.php
<?php /** * Cookie Authentication plugin for phpMyAdmin */ declare(strict_types=1); namespace PhpMyAdmin\Plugins\Auth; use PhpMyAdmin\Config; use PhpMyAdmin\Core; use PhpMyAdmin\Current; use PhpMyAdmin\Error\ErrorHandler; use PhpMyAdmin\Exceptions\SessionHandlerException; use PhpMyAdmin\LanguageManager; use PhpMyAdmin\Message; use PhpMyAdmin\Plugins\AuthenticationPlugin; use PhpMyAdmin\ResponseRenderer; use PhpMyAdmin\Server\Select; use PhpMyAdmin\Session; use PhpMyAdmin\Template; 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 explode; use function function_exists; use function in_array; use function ini_get; 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(): never { $GLOBALS['conn_error'] ??= null; $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. */ $sessionExpired = isset($_REQUEST['check_timeout']) || isset($_REQUEST['session_timedout']); if (! $sessionExpired && $response->loginPage()) { $response->callExit(); } /** * 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 ($sessionExpired) { $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); } $config = Config::getInstance(); // No recall if blowfish secret is not configured as it would produce // garbage if ($config->settings['LoginCookieRecall'] && $config->settings['blowfish_secret'] !== '') { $defaultUser = $this->user; $defaultServer = $GLOBALS['pma_auth_server']; $hasAutocomplete = true; } else { $defaultUser = ''; $defaultServer = ''; $hasAutocomplete = false; } // wrap the login form in a div which overlays the whole page. $loginHeader = $this->template->render('login/header', ['session_expired' => $sessionExpired]); $errorMessages = ''; // Show error message if (! empty($GLOBALS['conn_error'])) { $errorMessages = Message::rawError((string) $GLOBALS['conn_error'])->getDisplay(); } elseif (isset($_GET['session_expired']) && (int) $_GET['session_expired'] == 1) { $errorMessages = Message::rawError( __('Your session has expired. Please log in again.'), )->getDisplay(); } $languageManager = LanguageManager::getInstance(); $availableLanguages = []; if (empty($config->settings['Lang']) && $languageManager->hasChoice()) { $availableLanguages = $languageManager->sortedLanguages(); } $serversOptions = ''; $hasServers = count($config->settings['Servers']) > 1; if ($hasServers) { $serversOptions = Select::render(false); } $formParams = []; if (Current::$database !== '') { $formParams['db'] = Current::$database; } if (Current::$table !== '') { $formParams['table'] = Current::$table; } $errors = ''; $errorHandler = ErrorHandler::getInstance(); if ($errorHandler->hasDisplayErrors()) { $errors = $errorHandler->getDispErrors(); } // close the wrapping div tag, if the request is after session timeout if ($sessionExpired) { $loginFooter = $this->template->render('login/footer', ['session_expired' => 1]); } else { $loginFooter = $this->template->render('login/footer', ['session_expired' => 0]); } $configFooter = Config::renderFooter(); $response->addHTML($this->template->render('login/form', [ 'login_header' => $loginHeader, 'is_demo' => $config->config->debug->demo, 'error_messages' => $errorMessages, 'available_languages' => $availableLanguages, 'is_session_expired' => $sessionExpired, 'has_autocomplete' => $hasAutocomplete, 'session_id' => session_id(), 'is_arbitrary_server_allowed' => $config->settings['AllowArbitraryServer'], 'default_server' => $defaultServer, 'default_user' => $defaultUser, 'has_servers' => $hasServers, 'server_options' => $serversOptions, 'server' => Current::$server, 'lang' => $GLOBALS['lang'], 'has_captcha' => ! empty($config->settings['CaptchaApi']) && ! empty($config->settings['CaptchaRequestParam']) && ! empty($config->settings['CaptchaResponseParam']) && ! empty($config->settings['CaptchaLoginPrivateKey']) && ! empty($config->settings['CaptchaLoginPublicKey']), 'use_captcha_checkbox' => ($config->settings['CaptchaMethod'] ?? '') === 'checkbox', 'captcha_api' => $config->settings['CaptchaApi'], 'captcha_req' => $config->settings['CaptchaRequestParam'], 'captcha_resp' => $config->settings['CaptchaResponseParam'], 'captcha_key' => $config->settings['CaptchaLoginPublicKey'], 'form_params' => $formParams, 'errors' => $errors, 'login_footer' => $loginFooter, 'config_footer' => $configFooter, ])); $response->callExit(); } /** * 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 { $GLOBALS['conn_error'] ??= null; // 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; $config = Config::getInstance(); if (isset($_POST['pma_username']) && $_POST['pma_username'] != '') { // Verify Captcha if it is required. if ( ! empty($config->settings['CaptchaApi']) && ! empty($config->settings['CaptchaRequestParam']) && ! empty($config->settings['CaptchaResponseParam']) && ! empty($config->settings['CaptchaLoginPrivateKey']) && ! empty($config->settings['CaptchaLoginPublicKey']) ) { if (empty($_POST[$config->settings['CaptchaResponseParam']])) { $GLOBALS['conn_error'] = __('Missing Captcha verification, maybe it has been blocked by adblock?'); return false; } $captchaSiteVerifyURL = $config->settings['CaptchaSiteVerifyURL'] ?? ''; $captchaSiteVerifyURL = empty($captchaSiteVerifyURL) ? null : $captchaSiteVerifyURL; if (function_exists('curl_init') && function_exists('curl_exec')) { $reCaptcha = new ReCaptcha\ReCaptcha( $config->settings['CaptchaLoginPrivateKey'], new ReCaptcha\RequestMethod\CurlPost(null, $captchaSiteVerifyURL), ); } elseif (ini_get('allow_url_fopen')) { $reCaptcha = new ReCaptcha\ReCaptcha( $config->settings['CaptchaLoginPrivateKey'], new ReCaptcha\RequestMethod\Post($captchaSiteVerifyURL), ); } else { $reCaptcha = new ReCaptcha\ReCaptcha( $config->settings['CaptchaLoginPrivateKey'], new ReCaptcha\RequestMethod\SocketPost(null, $captchaSiteVerifyURL), ); } // verify captcha status. $resp = $reCaptcha->verify( $_POST[$config->settings['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)) { $GLOBALS['conn_error'] = __('Failed to connect to the reCAPTCHA service!'); } else { $GLOBALS['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) >= 2000) { $GLOBALS['conn_error'] = __('Your password is too long. To prevent denial-of-service attacks, ' . 'phpMyAdmin restricts passwords to less than 2000 characters.'); return false; } $this->password = $password; if ($config->settings['AllowArbitraryServer'] && isset($_REQUEST['pma_servername'])) { if ($config->settings['ArbitraryServerRegexp']) { $parts = explode(' ', $_REQUEST['pma_servername']); if (count($parts) === 2) { $tmpHost = $parts[0]; } else { $tmpHost = $_REQUEST['pma_servername']; } $match = preg_match($config->settings['ArbitraryServerRegexp'], $tmpHost); if (! $match) { $GLOBALS['conn_error'] = __('You are not allowed to log in to this MySQL server!'); return false; } } $GLOBALS['pma_auth_server'] = Core::sanitizeMySQLHost($_REQUEST['pma_servername']); } try { /* Secure current session on login to avoid session fixation */ Session::secure(); } catch (SessionHandlerException $exception) { $responseRenderer = ResponseRenderer::getInstance(); $responseRenderer->addHTML((new Template())->render('error/generic', [ 'lang' => $GLOBALS['lang'] ?? 'en', 'dir' => LanguageManager::$textDir, 'error_message' => $exception->getMessage(), ])); $responseRenderer->callExit(); } return true; } // At the end, try to set the $this->user // and $this->password variables from cookies // check cookies $serverCookie = $config->getCookie('pmaUser-' . Current::$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 $lastAccessTime = time() - $config->settings['LoginCookieValidity']; foreach ($_SESSION['browser_access_time'] as $key => $value) { if ($value >= $lastAccessTime) { 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_to_test'); SessionCache::remove('db_priv'); SessionCache::remove('col_priv'); SessionCache::remove('table_priv'); SessionCache::remove('proc_priv'); $this->showFailure('no-activity'); } // check password cookie $serverCookie = $config->getCookie('pmaAuth-' . Current::$server); if (empty($serverCookie)) { return false; } $value = $this->cookieDecrypt( $serverCookie, $this->getSessionEncryptionSecret(), ); if ($value === null) { return false; } $authData = json_decode($value, true); if (! is_array($authData) || ! isset($authData['password'])) { return false; } $this->password = $authData['password']; if ($config->settings['AllowArbitraryServer'] && ! empty($authData['server'])) { $GLOBALS['pma_auth_server'] = $authData['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 { $config = Config::getInstance(); if ($config->settings['AllowArbitraryServer'] && ! empty($GLOBALS['pma_auth_server'])) { /* Allow to specify 'host port' */ $parts = explode(' ', $GLOBALS['pma_auth_server']); if (count($parts) === 2) { $tmpHost = $parts[0]; $tmpPort = $parts[1]; } else { $tmpHost = $GLOBALS['pma_auth_server']; $tmpPort = ''; } if ($config->selectedServer['host'] != $GLOBALS['pma_auth_server']) { $config->selectedServer['host'] = $tmpHost; if ($tmpPort !== '') { $config->selectedServer['port'] = $tmpPort; } } unset($tmpHost, $tmpPort, $parts); } return parent::storeCredentials(); } /** * Stores user credentials after successful login. */ public function rememberCredentials(): void { // 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? $urlParams = []; if (Current::$database !== '') { $urlParams['db'] = Current::$database; } if (Current::$table !== '') { $urlParams['table'] = Current::$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 ']); $response->callExit(); } // 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(); $response = ResponseRenderer::getInstance(); $response->disable(); $response->redirect('./index.php?route=/' . Url::getCommonRaw($urlParams, '&')); $response->callExit(); } /** * Stores username in a cookie. * * @param string $username User name */ public function storeUsernameCookie(string $username): void { // Name and password cookies need to be refreshed each time // Duration = one month for username Config::getInstance()->setCookie( 'pmaUser-' . Current::$server, $this->cookieEncrypt( $username, $this->getEncryptionSecret(), ), ); } /** * Stores password in a cookie. * * @param string $password Password */ public function storePasswordCookie(string $password): void { $payload = ['password' => $password]; $config = Config::getInstance(); if ($config->settings['AllowArbitraryServer'] && ! empty($GLOBALS['pma_auth_server'])) { $payload['server'] = $GLOBALS['pma_auth_server']; } // Duration = as configured $config->setCookie( 'pmaAuth-' . Current::$server, $this->cookieEncrypt( (string) json_encode($payload), $this->getSessionEncryptionSecret(), ), null, $config->settings['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 * * @param string $failure String describing why authentication has failed */ public function showFailure(string $failure): never { $GLOBALS['conn_error'] ??= null; parent::showFailure($failure); // Deletes password cookie and displays the login form Config::getInstance()->removeCookie('pmaAuth-' . Current::$server); $GLOBALS['conn_error'] = $this->getErrorMessage($failure); $response = ResponseRenderer::getInstance(); // needed for PHP-CGI (not need for FastCGI or mod-php) $response->addHeader('Cache-Control', 'no-store, no-cache, must-revalidate'); $response->addHeader('Pragma', 'no-cache'); $this->showLoginForm(); } /** * Returns blowfish secret or generates one if needed. */ private function getEncryptionSecret(): string { $key = Config::getInstance()->settings['blowfish_secret']; $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) { return ''; } return base64_encode($nonce . $ciphertext); } public function cookieDecrypt(string $encryptedData, string $secret): string|null { $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) { 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(string $password): void { $this->storePasswordCookie($password); } /** * Perform logout */ public function logOut(): void { $config = Config::getInstance(); // -> delete password cookie(s) if ($config->settings['LoginCookieDeleteAll']) { foreach (array_keys($config->settings['Servers']) as $key) { $config->removeCookie('pmaAuth-' . $key); if (! $config->issetCookie('pmaAuth-' . $key)) { continue; } $config->removeCookie('pmaAuth-' . $key); } } else { $cookieName = 'pmaAuth-' . Current::$server; $config->removeCookie($cookieName); if ($config->issetCookie($cookieName)) { $config->removeCookie($cookieName); } } parent::logOut(); } }
Close