首页 > 代码库 > IDF实验室-简单编程-字符统计 writeup
IDF实验室-简单编程-字符统计 writeup
题目地址: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=http://www.mamicode.com/payload) 25 print asd.content
程序很简单。
关键是提示时的cookies要与第一次访问的cookies一样,否则会提醒花儿都谢啦。
IDF实验室-简单编程-字符统计 writeup
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。