1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > 对于ThinkPHP框架早期版本的一个SQL注入漏洞详细分析【PHP】

对于ThinkPHP框架早期版本的一个SQL注入漏洞详细分析【PHP】

时间:2018-06-22 22:03:16

相关推荐

对于ThinkPHP框架早期版本的一个SQL注入漏洞详细分析【PHP】

后端开发|php教程

ThinkPHP框架,SQL注入,漏洞,分析

后端开发-php教程

ThinkPHP官网上曾有一段公告指出,在ThinkPHP 3.1.3及之前的版本存在一个SQL注入漏洞,漏洞存在于ThinkPHP/Lib/Core/Model.class.php 文件

根据官方文档对”防止SQL注入”的方法解释(参考/manual/sql_injection.html)

使用查询条件预处理可以防止SQL注入,没错,当使用如下代码时可以起到效果:

asp邮箱源码,vscode制作表格没有边框,ubuntu 时间乱码,tomcat 的 日志路径,爬虫网页图片,php访问access,抖音的seo有效果么,网站源码上传空间lzw

$Model->where("id=%d and username=\%s and xx=\%f\",array($id,$username,$xx))->select();

或者

cocos2dx ios游戏源码,ubuntu子系统gpu,如何安装tomcat8,爬虫少女难以,腾讯php代码规范,青海短视频seo优化优质服务商lzw

$Model->where("id=%d and username=\%s and xx=\%f\",$id,$username,$xx)->select();

但是,当你使用如下代码时,却没有”防止SQL注入”的效果(但是官方文档却说可以防止SQL注入):

des算法源码,怎么看vscode的版本,ubuntu合并数据,使用tomcat发布服务,django调用爬虫,php开发有前途吗,seo是指什么关键词,地方网站创业lzw

$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

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。