07 2018 档案
摘要:(1)需要安装:Tesseract-OCR; (2)为Tesseract-OCR设置环境变量 识别的时候有20%的可能将port识别为字母,也就是20%的出错率,因为代码中的代理网站的端口是图片形式提供,OCR识别会有一定出错。
阅读全文
摘要:又从slqmap源码里面看到一个实现,还挺有意思的:
阅读全文
摘要:# -*- coding: utf-8 -*- from pinyin import * rawFile = open('top500.txt') top500pinyin = open('top500pinyin.txt','w') for name in rawFile: name = name.decode('gbk').split()[1].encode('utf-8') ...
阅读全文
摘要:#!/usr/bin/env python import requests import itertools characters = "abcdefghijklmnopqrstuvwxyz0123456789_!#" back_dir = "" flag = 0 url = "http://www.rensheng5.com/tags.php" data = { "_FILES[mo...
阅读全文