WeChall_Training: Programming 1 (Training, Coding)
Posted 冷暖知不知
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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.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)
以上是关于WeChall_Training: Programming 1 (Training, Coding)的主要内容,如果未能解决你的问题,请参考以下文章
WeChall_Training: Encodings I (Training, Encoding)
WeChall_Training: Programming 1 (Training, Coding)
WeChall_Training: Crypto - Caesar I (Crypto, Training)