BUUCTF-[b01lers2020]Life on Mars

[b01lers2020]Life on Mars

BUUCTF-[b01lers2020]Life on Mars_第1张图片
审视了一下页面的功能,这几个功能键只能改变页面显示,连跳转都没有。扫描了一下,没有其他任何页面。这是猜想是不是框架漏洞。
BUUCTF-[b01lers2020]Life on Mars_第2张图片
利用了Bootstrap的漏洞也没用,只能抓包看一下,不抓不知道,一抓吓一跳
BUUCTF-[b01lers2020]Life on Mars_第3张图片
找到了sql注入的注入点,测试了一下,似乎存在waf,不能有空格,于是常规用/**/替换空格。
BUUCTF-[b01lers2020]Life on Mars_第4张图片
爆破数据库名
union/**/select/**/1,group_concat(SCHEMA_NAME)/**/from/**/information_schema.SCHEMATA
BUUCTF-[b01lers2020]Life on Mars_第5张图片
爆破表名
BUUCTF-[b01lers2020]Life on Mars_第6张图片
BUUCTF-[b01lers2020]Life on Mars_第7张图片
爆破列名
BUUCTF-[b01lers2020]Life on Mars_第8张图片
爆破字段
BUUCTF-[b01lers2020]Life on Mars_第9张图片
flag在alien_code数据库的code表下的code字段内。

你可能感兴趣的:(BUU-WEB,网络安全)