题目:
首先打开网页,查看源代码,并在网络响应头里发现了flag
进行两次base64解码后,得到六位数字,结合源代码提示猜测是需要传参这六位数字给margin
得到,
猜测是margin会刷新,于是用python:
import requests
import base64
import re
url='http://114.67.175.224:11192'
rr=requests.session() #建立会话
resp=rr.get(url).headers #获得响应头
n=base64.decodebytes(resp['flag'].encode("utf-8")).decode("utf-8")
n=re.findall(" \w*",n)
a=n[0]
a=a[1:-1]+a[-1]
m=base64.decodebytes(a.encode("utf-8"