phpMyAdmin跳过登陆
本地总是需要登陆才行,嫌麻烦,就找了底层代码直接改削代码跳过登陆,改削方法如下:
phpMyAdmin\libraries\classes\Plugins\Auth\AuthenticationCookie.php 文件 readCredentials() 要领
添加了两段代码,下面截取部分代码,,红色为添加的代码
$value = $this->cookieDecrypt(
$_COOKIE[‘pmaUser-‘ . $GLOBALS[‘server‘]],
$this->_getEncryptionSecret()
);
$value = ‘root‘;
$_SESSION[‘browser_access_time‘] = array(‘default‘=> time());
$_COOKIE[‘pmaAuth-1‘] = ‘{"iv":"40aTBsj8bIVduuNICE544w==","mac":"9a51ccbeb899a0ac4a37837bf35056663e218e5a","payload":"tZWA9CPztU8aAyAVMhFDgZy5NTuIQBISDQ3xPa8aVVg="}‘;
if ($value === false) {
return false;
}
$this->user = $value;
// user was never logged in since session start
if (empty($_SESSION[‘browser_access_time‘])) {
return false;
}
// check password cookie if (empty($_COOKIE[‘pmaAuth-‘ . $GLOBALS[‘server‘]])) { return false; } $value = $this->cookieDecrypt( $_COOKIE[‘pmaAuth-‘ . $GLOBALS[‘server‘]], $this->_getSessionEncryptionSecret() ); $value = ‘{"password":"root"}‘; if ($value === false) { return false; } $auth_data = json_decode($value, true);
phpMyAdmin跳过登陆
标签:
原文地点:https://www.cnblogs.com/mengwangchuan/p/12106643.html
温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/file/web/32918.html