ThinkPHP 3.1.3及以前的版本存在一个SQL注入漏洞,漏洞存在于ThinkPHP/Lib/Core/Model.class.php 文件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过滤.html
原函数: 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;
- }
验证漏洞(举例):thinkphp
请求地址:http://localhost/Main?id=boo" or 1="1或http://localhost/Main?id=boo%22%20or%201=%221函数
action代码: ui
- $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;
结果:this
表peipeidui全部数据被列出,SQL注入语句起效.htm
解决办法:ip
将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;
- }