ZIP文件密码爆破
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZIP文件密码爆破相关的知识,希望对你有一定的参考价值。
import zipfile import threading def extractFile(zFile,password): try: zFile.extractall(pwd = password) print password except: pass def main(): zFile = zipfile.ZipFile(r"这里写要爆破的zip文件的路径") passFile = open(r‘这里写字典的路径‘,‘r‘) for line in passFile.readlines(): password = line.strip(‘\n‘) t = threading.Thread(target = extractFile,args=(zFile,password)) t.start() if __name__ == "__main__": main()
以上是关于ZIP文件密码爆破的主要内容,如果未能解决你的问题,请参考以下文章
Python爆破ZIP文件(支持纯数字&数字+字母&密码本)
Python爆破ZIP文件(支持纯数字&数字+字母&密码本)