首页 > 其他 > 详细

如何判断字符型注入和数字型注入

时间:2020-12-18 16:47:46      阅读:64      评论:0      收藏:0      [点我收藏+]

参考网址

https://blog.csdn.net/weixin_43919144/article/details/105552701

https://blog.csdn.net/weixin_43096078/article/details/108214500

数字型注入

http://localhost:8888/form.php?id=1 and 1=1

http://localhost:8888/form.php?id=1 and 1=2

如果结果不同,可判断未数字型注入,为什么呢?

如果是数字型注入,sql语句就会是这样的

select * from tablename where id =1 and 1=1

select * from tablename where id =1 and 1=2

 

如果是字符型注入,sql语句应该是这样的

select * from tablename where id =‘1 and 1 = 1‘

select * from tablename where id =‘1 and 1 = 2‘

如果后面加1=1 和1=2 结果不同,可判断未数字型注入,如果相同,可能为字符型注入

 

字符型注入

http://localhost:8888/form.php?id=1‘ and ‘1‘=‘1

http://localhost:8888/form.php?id=1‘ and ‘1‘=‘2

sql语句应该是这样的

select * from tablename where cat =‘1‘ and ‘1‘ = ‘1‘

select * from tablename where cat =‘1‘ and ‘1‘ = ‘2‘

 

如何判断字符型注入和数字型注入

原文:https://www.cnblogs.com/xxzl20171025/p/14154736.html

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