Fork me on GitHub

WeChall Training: Programming 1


刚入ctf的坑,做一些题练练手。

WeChall上的题还是比较适合入门的。

题目如下:

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

给了个链接,点进去后显示一个字符串,要把它加在指定的URL中并进行访问,整个过程要在1.337秒内完成。

我竟然还真的手动试了几次。。。最快也要四秒。。。

正解就是写个脚本,我用Python实现,代码如下:

1
2
3
4
5
6
7
8
import requests
url = 'http://www.wechall.net/challenge/training/programming1/index.php?action=request'
cookie = dict(WC = '************************')
re = requests.get(url, cookies = cookie)
key = re.text
url2 = 'http://www.wechall.net/challenge/training/programming1/index.php?answer='
y = requests.get(url2 + key, cookies = cookie)

其中************************部分要填入的是你浏览器的cookie

至于如何查询cookie,这里我以Chrome浏览器为例:

  1. Ctrl+Shift+Delete调出清除历史记录的界面,点击取消(这样的目的纯粹是因为方便一些)
  2. 依次点击内容设置->Cookie->查看所有 Cookie 和网站数据
  3. 搜索wechall.net->找到名称为WC的cookie内容

PS:上面的代码运行完成后并不会出现提示性的语句,但是你会惊奇地发现题目已经过了

donate the author