标签:str bin odi post color art 统计 import 分享
题目地址:http://ctf.idf.cn/index.php?g=game&m=article&a=index&id=37
网站:http://ctf.idf.cn/game/pro/37/
主要是要有2秒的限制。写个python 脚本。
1 #!usr/bin/env python 2 #!coding=utf-8 3 4 import requests 5 import re 6 __author__ = ‘zhengjim‘ 7 8 9 url = ‘http://ctf.idf.cn/game/pro/37/‘ 10 res = requests.get(url) 11 _cookies = res.cookies 12 a = res.text 13 b = re.findall(r‘<hr />(.*)<hr />‘,a,re.S) 14 c = ‘,‘.join(b) 15 w = str(c.count(‘w‘)) 16 o = str(c.count(‘o‘)) 17 l = str(c.count(‘l‘)) 18 d = str(c.count(‘d‘)) 19 y = str(c.count(‘y‘)) 20 anw = w+o+l+d+y 21 print anw 22 23 payload = {‘anwser‘:anw} 24 asd = requests.post("http://ctf.idf.cn/game/pro/37/",cookies=_cookies, data=payload) 25 print asd.content
程序很简单。
关键是提示时的cookies要与第一次访问的cookies一样,否则会提醒花儿都谢啦。
标签:str bin odi post color art 统计 import 分享
原文地址:http://www.cnblogs.com/zhengjim/p/6105020.html