对于ThinkPHP框架早期版本的一个SQL注入漏洞详细分析
程序员文章站
2022-07-20 23:07:11
thinkphp官网上曾有一段公告指出,在thinkphp 3.1.3及之前的版本存在一个sql注入漏洞,漏洞存在于thinkphp/lib/core/model.clas...
thinkphp官网上曾有一段公告指出,在thinkphp 3.1.3及之前的版本存在一个sql注入漏洞,漏洞存在于thinkphp/lib/core/model.class.php 文件
根据官方文档对"防止sql注入"的方法解释(参考http://doc.thinkphp.cn/manual/sql_injection.html)
使用查询条件预处理可以防止sql注入,没错,当使用如下代码时可以起到效果:
$model->where("id=%d and username='%s' and xx='%f'",array($id,$username,$xx))->select();
或者
$model->where("id=%d and username='%s' and xx='%f'",$id,$username,$xx)->select();
但是,当你使用如下代码时,却没有"防止sql注入"的效果(但是官方文档却说可以防止sql注入):
$model->query('select * from user where id=%d and status=%s',$id,$status);
或者
$model->query('select * from user where id=%d and status=%s',array($id,$status));
原因分析:
thinkphp/lib/core/model.class.php 文件里的parsesql函数没有实现sql过滤.
其原函数为:
protected function parsesql($sql,$parse) { // 分析表达式 if(true === $parse) { $options = $this->_parseoptions(); $sql = $this->db->parsesql($sql,$options); }elseif(is_array($parse)){ // sql预处理 $sql = vsprintf($sql,$parse); }else{ $sql = strtr($sql,array('__table__'=>$this->gettablename(),'__prefix__'=>c('db_prefix'))); } $this->db->setmodel($this->name); return $sql; }
验证漏洞(举例):
请求地址:
http://localhost/main?id=boo" or 1="1
或
http://localhost/main?id=boo%22%20or%201=%221
action代码:
$model=m('peipeidui'); $m=$model->query('select * from peipeidui where name="%s"',$_get['id']); dump($m);exit;
或者:
$model=m('peipeidui'); $m=$model->query('select * from peipeidui where name="%s"',array($_get['id'])); dump($m);exit;
结果:
表peipeidui所有数据被列出,sql注入语句起效.
解决方法:
可将parsesql函数修改为:
protected function parsesql($sql,$parse) { // 分析表达式 if(true === $parse) { $options = $this->_parseoptions(); $sql = $this->db->parsesql($sql,$options); }elseif(is_array($parse)){ // sql预处理 $parse = array_map(array($this->db,'escapestring'),$parse);//此行为新增代码 $sql = vsprintf($sql,$parse); }else{ $sql = strtr($sql,array('__table__'=>$this->gettablename(),'__prefix__'=>c('db_prefix'))); } $this->db->setmodel($this->name); return $sql; }
总结:
1.不要过分依赖tp的底层sql过滤,程序员要做好安全检查
2.不建议直接用$_get,$_post
下一篇: ThinkPHP的Widget扩展实例