基本信息
源码名称:python暴力破解zip压缩包密码
源码大小:3.93KB
文件格式:.py
开发语言:Python
更新时间:2019-03-16
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
#codig:utf-8 import time import zipfile from threading import Thread import multiprocessing from multiprocessing import Queue # input path = "123.zip" # 文件路径 g_maxprocess = 1 # 分配进程数 g_minlength = 3 # 最小长度 g_maxlength = 3 # 最大长度 g_startnum = 0 #开始数 thread_queue = [] # 字符集,将可能的字符放在此数组里面。 g_chars = [ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v','w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V','W', 'X', 'Y', 'Z', '.', '#' ] # 提取文件 def extractFile(binfile, password): try: binfile.extractall(pwd= bytes(password,"utf-8")) print("This file\'s password is " password) return password except: return None # 获取密码 def dict_builder(startnum=0, endnum= None, minlength=g_minlength, maxlength=g_maxlength, chars = g_chars): base = len(chars) ** (minlength-1) end = len(chars) ** maxlength if startnum > base: base = startnum if endnum is not None and endnum<end: end = endnum start = base def get_char(num): if num < len(chars): return chars[num] else: return get_char(num // len(chars)) chars[num % len(chars)] for i in range(start, end): yield i, get_char(i) def mainstep(id, queue, startnum=0, endnum= None): print("thread {} start: startnum:{}\tendnum:{}".format(id, startnum, endnum)) binfile = zipfile.ZipFile(path) print("start dict_builder....") for Pwd in dict_builder(startnum, endnum): numnow = Pwd[0] print("now is:{}".format(Pwd[1])) if (numnow - startnum)%10000 == 0: queue.put("{} has deal with 10000,now is {} ,end is {}".format(id, numnow, endnum)) password = extractFile(binfile, Pwd[1]) if password is not None: queue.put("crack_ok") queue.put("password") break queue.put("exit") print("process {} exiting....".format(id)) # 创建进程 if __name__ == '__main__': maxnum = len(g_chars) ** g_maxlength numpct = 1./g_maxprocess num_pool = [] for i in range(0, g_maxprocess): start = g_startnum int(( maxnum - g_startnum) * numpct * i) end = g_startnum int(( maxnum - g_startnum) * numpct * (i 1)) num_pool.append((start, end)) pool = multiprocessing.Pool(processes=(g_maxprocess 1)) manager = multiprocessing.Manager() for i in range(0, g_maxprocess): q = manager.Queue() thread_queue.append(q) startnum, endnum = num_pool[i] pool.apply_async(func=mainstep, args=(i, q, startnum, endnum)) pool.close() queuesize = [0 for i in range(len(thread_queue))] while True: for i in range(len(thread_queue)): q = thread_queue[i] if queuesize[i] != -1: size = q.qsize() queuesize[i] = size if size !=0: str = q.get() print(str) if str == "crack_ok": time.sleep(1) paswd = q.get() print("crack success pwd:{}".format(paswd)) break if str == "exit": queuesize[i] = -1 if sum(queuesize) == 0: # 队列为空,睡眠0.5S print("empty sleep...") time.sleep(0.5) if sum(queuesize) == 0 - len(thread_queue): # 进程全部退出,破解失败 print("crack failed...") break print("kill all thread...") pool.terminate() print('All subprocesses done.')