Quick calc题解
打开链接发现需要在3s内提交答案很显然考虑到用脚本计算提交
直接查看网页源代码
<input type="text" name="result"/>
<input type="submit" value="提交"/>name=“result”
所以编写python脚本
import requests
import re
url="http://123.206.31.85:10002/"
s=requests.session()
r=s.post(url)
math=eval(str(re.findall(r"<br/>\s+(.*?)</p>",r.content.decode("utf-8"))))
result={
"result":math
}
r=s.post(url,data=result)
print(r.content.decode('utf-8'))
“result”:math
运行即可得到结果flag
页:
[1]