解法一 哈希拓展攻击
secert_key
是一个长度为 16 的字符串,在 /geneSign?param=flag.txt
中可以获取hashlib.md5(secert_key + param + action).hexdigest()
,密钥param不动,增加action的内容。
解法二 构造字符串
前言
过程比较繁琐,还包含了一些我的解题想法,想直接看答案可以跳到结果这一章去看。
解题思路
BUUCTF SSRFMe,打开是一段python代码,手动格式化。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
#! /usr/bin/env python
# #encoding=utf-8
from flask import Flask
from flask import request
import socket
import hashlib
import urllib
import sys
import os
import json
reload(sys)
sys.setdefaultencoding('latin1')
app = Flask(__name__)
secert_key = os.urandom(16)
class Task:
def __init__(self, action, param, sign, ip):
self.action = action
self.param = param
self.sign = sign
self.sandbox = md5(ip)
if(not os.path.exists(self.sandbox)):
#SandBox For Remote_Addr
os.mkdir(self.sandbox)
def Exec(self):
result = {}
result['code'] = 500
if (self.checkSign()):
if "scan" in self.action:
tmpfile = open("./%s/result.txt" % self.sandbox, 'w')
resp = scan(self.param)
if (resp == "Connection Timeout"):
result['data'] = resp
else:
print resp
tmpfile.write(resp)
tmpfile.close()
result['code'] = 200
if "read" in self.action:
f = open("./%s/result.txt" % self.sandbox, 'r')
result['code'] = 200
result['data'] = f.read()
if result['code'] == 500:
result['data'] = "Action Error"
else:
result['code'] = 500
result['msg'] = "Sign Error"
return result
def checkSign(self):
if (getSign(self.action, self.param) == self.sign):
return True
else:
return False
#generate Sign For Action Scan.
@app.route("/geneSign", methods=['GET', 'POST'])
def geneSign():
param = urllib.unquote(request.args.get("param", ""))
action = "scan"
return getSign(action, param)
@app.route('/De1ta',methods=['GET','POST'])
def challenge():
action = urllib.unquote(request.cookies.get("action"))
param = urllib.unquote(request.args.get("param", ""))
sign = urllib.unquote(request.cookies.get("sign"))
ip = request.remote_addr
if(waf(param)):
return "No Hacker!!!!"
task = Task(action, param, sign, ip)
return json.dumps(task.Exec())
@app.route('/')
def index():
return open("code.txt","r").read()
def scan(param):
socket.setdefaulttimeout(1)
try:
return urllib.urlopen(param).read()[:50]
except:
return "Connection Timeout"
def getSign(action, param):
return hashlib.md5(secert_key + param + action).hexdigest()
def md5(content):
return hashlib.md5(content).hexdigest()
def waf(param):
check=param.strip().lower()
if check.startswith("gopher") or check.startswith("file"):
return True
else:
return False
if __name__ == '__main__':
app.debug = False
app.run(host='0.0.0.0',port=80)
|
有三个uri
flag保存在了**./flag.txt**
geneSign生成签名,challenge验证签名通过action执行操作,scan利用urllib.urlopen(param)获取数据保存到result.txt,read获取result.txt的内容显示。
先访问geneSign获取签名。然后用editthiscookie设置网页cookie值,访问De1ta,通过scan保存文件,read读取内容。
过程
这里我们先不设置cookie访问一遍看是什么效果
应该是request.cookies.get的时候出错了,这个时候想action cookie没设,可以用editthiscookie设置cookie,但是要知道sign的值,task是通过checkSign验证签名,checkSign调用getSign。getSign里有个secert_key,secert_key是初始化的时候系统随机的os.urandom(16) ,所以查getSign还在哪调用。
getSign在/geneSign里也用了,所以我们可以先访问getSign获取sign。
这个时候设置cookie(action=scan,sign=0e5aedec26dae45a34faa23d8fcd219b)访问看看
看到action=scan要用scan这个函数,要求一个param参数
1
2
3
4
5
6
|
def scan(param):
socket.setdefaulttimeout(1)
try:
return urllib.urlopen(param).read()[:50]
except:
return "Connection Timeout"
|
这个param由/De1ta从url参数中获取,并且有一个waf函数,过滤所有以"gopher"和"file"开头的param。这个时候想到可以通过urllib.urlopen(param)来打开./flag.txt。
查看python官方文档,看看有没有什么可以绕过的方法。
注意这句话
Open a network object denoted by a URL for reading. If the URL does not have a scheme identifier, or if it has file:
as its scheme identifier, this opens a local file (without universal newlines); otherwise it opens a socket to a server somewhere on the network.
所以我们可以直接用param=flag.txt打开./flag.txt读取flag
尝试
先试一下
1
|
http://3f668dc5-4224-455d-9406-172977048bf6.node3.buuoj.cn/geneSign?param=flag.txt
|
设置cookie
访问
1
|
http://3f668dc5-4224-455d-9406-172977048bf6.node3.buuoj.cn/De1ta?param=flag.txt
|
这个时候flag肯定已经保存到"./%s/result.txt" % self.sandbox
这个文件里了
我想通过action=“read"读,所以设置cookie中的action=read
访问
1
|
http://3f668dc5-4224-455d-9406-172977048bf6.node3.buuoj.cn/De1ta?param=flag.txt
|
诶,怎么有点不对,继续看代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
def Exec(self):
result = {}
result['code'] = 500
if (self.checkSign()):
if "scan" in self.action:
tmpfile = open("./%s/result.txt" % self.sandbox, 'w')
resp = scan(self.param)
if (resp == "Connection Timeout"):
result['data'] = resp
else:
print resp
tmpfile.write(resp)
tmpfile.close()
result['code'] = 200
if "read" in self.action:
f = open("./%s/result.txt" % self.sandbox, 'r')
result['code'] = 200
result['data'] = f.read()
if result['code'] == 500:
result['data'] = "Action Error"
else:
result['code'] = 500
result['msg'] = "Sign Error"
return result
def checkSign(self):
if (getSign(self.action, self.param) == self.sign):
return True
else:
return False
@app.route("/geneSign", methods=['GET', 'POST'])
def geneSign():
param = urllib.unquote(request.args.get("param", ""))
action = "scan"
return getSign(action, param)
def getSign(action, param):
return hashlib.md5(secert_key + param + action).hexdigest()
|
发现我们通过geneSign获取sign时,geneSign设置action=“scan”。访问/De1ta时我们想获取flag只能action=“read”。这个时候我看到,当action=“read"时,param是未在主逻辑中使用,但是在checkSign的时候却需要用到,而geneSign的param就纯用来生成签名,这不是暗示我可以构造param来绕过这一波逻辑直达action=“read"吗?
这个时候想构造的这个param,能让action=“scan"的时候生成的 sign 可以在访问/De1ta,action=“read"的时候通过验证。
结果
1
2
|
def getSign(action, param):
return hashlib.md5(secert_key + param + action).hexdigest()
|
action在param后边,我们注意在/De1ta里判断action使用的是 in 。
设置 param=flag.txtread
就可以让生成的时候
param + action为flag.txtreadscan
1
|
http://3f668dc5-4224-455d-9406-172977048bf6.node3.buuoj.cn/geneSign?param=flag.txtread
|
设置 action=readscan
、param=flag.txt
param + action也为flag.txtreadscan
就可以通过scan设置result.txt为flag.txt的内容,read读取到flag.txt的内容。
设置sign为刚才查到的sign。
访问
1
|
http://3f668dc5-4224-455d-9406-172977048bf6.node3.buuoj.cn/De1ta?param=flag.txt
|
获得flag
参考
De1CTF ssrf_me 的三种解法
Hash Length Extension Attack