首页 > 数据库技术 > 详细

xml中的SQL注入

时间:2016-09-01 20:00:56      阅读:334      评论:0      收藏:0      [点我收藏+]

大家通常知道xml中大部分会导致外部实体注入,但是,xml也会出现SQL注入;

在xml中正常的sql语句写法有两种:

第一:

<select id="selectById" resultType="bean.user" >

select * from users where id = #id#</select>

第二:

<select id="selectById" resultType="bean.user" >

select * from users where id = ‘$id$‘</select>

在使用第一种写法的时候,id的value会以参数的形式注入到sql语句中,类似于预编译;

但是使用第二种写法的时候,id的value就会以字符串的形式直接插入到sql语句中,从而很容易导致sql注入。

xml中的SQL注入

原文:http://www.cnblogs.com/ermei/p/5830991.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!