直接上脚本,多跑几次就能出flag
import requests
import re

url = "http://123.206.31.85:10020/"

s = requests.Session()
HtmlSource = s.get(url).text
print(HtmlSource)
exp = re.search("[a-z0-9]+",HtmlSource).group()
print(exp)
get = {"key":exp}
params = s.get(url,params=get)
print(params.text)

 

相关文章:

  • 2022-01-11
  • 2021-12-19
  • 2021-04-26
  • 2021-09-03
  • 2021-08-20
  • 2021-04-27
  • 2022-12-23
猜你喜欢
  • 2021-06-07
  • 2022-01-11
  • 2022-12-23
  • 2021-09-09
  • 2021-11-12
  • 2022-12-23
  • 2021-04-22
相关资源
相似解决方案