尝试制作一个简单的密码暴力解压 python 中的 .zip 存档,我使用排列来尝试 2 个字符的所有可能性(我的想法是将来使用更多排列),并且我还设置了一个 .zip 文件 2字符密码。但是我的程序只是不从 zip 中提取文件。
import zipfile
from itertools import permutations
import re
z1 = input("Enter with file path+filename.zip:")
z = zipfile.ZipFile(z1)
caracteres = ['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', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
for i in permutations(caracteres,2):
i = re.sub(r'\W',"",str(i))
print(i)
password = i.encode()
try:
z.open(z1, mode='r')
z.extractall(pwd=password)
print ("pass="+i+"\n")
exit(0)
except Exception:
pass
德玛西亚99
相关分类