首页 > 代码库 > WeChall_Training: Programming 1 (Training, Coding)
WeChall_Training: Programming 1 (Training, Coding)
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.requestimport http.cookiejarurl1 = ‘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+textreq = urllib.request.Request(url2,headers = header)req.add_header(‘Cookie‘,‘********************************‘)text = urllib.request.urlopen(req).read().decode(‘utf-8‘)print(text)
WeChall_Training: Programming 1 (Training, Coding)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。