IDF实验室-简单编程-字符统计 writeup
Posted zhengjim
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 脚本。
#!usr/bin/env python #!coding=utf-8 import requests import re __author__ = \'zhengjim\' url = \'http://ctf.idf.cn/game/pro/37/\' res = requests.get(url) _cookies = res.cookies a = res.text b = re.findall(r\'<hr />(.*)<hr />\',a,re.S) c = \',\'.join(b) w = str(c.count(\'w\')) o = str(c.count(\'o\')) l = str(c.count(\'l\')) d = str(c.count(\'d\')) y = str(c.count(\'y\')) anw = w+o+l+d+y print anw payload = {\'anwser\':anw} asd = requests.post("http://ctf.idf.cn/game/pro/37/",cookies=_cookies, data=payload) print asd.content
程序很简单。
关键是提示时的cookies要与第一次访问的cookies一样,否则会提醒花儿都谢啦。
以上是关于IDF实验室-简单编程-字符统计 writeup的主要内容,如果未能解决你的问题,请参考以下文章
IDF实验室-python ByteCode writeup