python3共1篇
Python暴力破解Zip压缩包-春马与夏

Python暴力破解Zip压缩包

from zipfile import * from threading import Thread def extractfile(zfile, password): try: zfile.extractall(pwd = password) print ('[+]'+password) return password except: print ('[-...
24天前
090