When you visit this link you receive a message.
Submit the same message back to http://www.wechall.net/challenge/training/programming1/index.php?answer=the_message
Your timelimit is 1.337 seconds

 

解题:

  先在浏览器获取自己的cookie,再用python写了个自动提交的程序,header加上自己的cookie,运行即可。

 

import urllib.request
import http.cookiejar
url1 = 'http://www.wechall.net/challenge/training/programming1/index.php?action=request'
url2 = 'http://www.wechall.net/challenge/training/programming1/index.php?answer='
header = {}

req = urllib.request.Request(url1,headers = header)
req.add_header('Cookie','********************************')
text = urllib.request.urlopen(req).read().decode('utf-8')
print(text)

url2 = url2+text
req = urllib.request.Request(url2,headers = header)
req.add_header('Cookie','********************************')
text = urllib.request.urlopen(req).read().decode('utf-8')
print(text)

 

相关文章:

  • 2021-08-14
  • 2021-06-27
  • 2022-02-27
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-10
  • 2021-06-25
  • 2022-12-23
  • 2021-10-22
  • 2021-10-29
相关资源
相似解决方案