python怎么破解压缩包密码
发布时间:2020年11月08日 12:11:32
来源:环球青藤
点击量:561
【摘要】基本原理在于Python标准库zipfile和扩展库unrar提供的解压缩方法extractall()可以指定密码,这样的话首先(手动或用程序)生成一个字典,然
基本原理在于Python标准库zipfile和扩展库unrar提供的解压缩方法extractall()可以指定密码,这样的话首先(手动或用程序)生成一个字典,然后依次尝试其中的密码,如果能够正常解压缩则表示密码正确。
import os
import sys
#zipfile是Python标准库
import zipfile
#尝试导入扩展库unrar,如果没有就临时安装
try:
from unrar import rarfile
except:
path = '"'+os.path.dirname(sys.executable)+'scriptspip" install --upgrade pip'
os.system(path)
path = '"'+os.path.dirname(sys.executable)+'scriptspip" install unrar'
os.system(path)
from unrar import rarfile
def decryptRarZipFile(filename):
#根据文件扩展名,使用不同的库
if filename.endswith('.zip'):
fp = zipfile.ZipFile(filename)
epf filename.endswith('.rar'):
fp = rarfile.RarFile(filename)
#解压缩的目标文件夹
desPath = filename[:-4]
if not os.path.exists(desPath):
os.mkdir(desPath)
#先尝试不用密码解压缩,如果成功则表示压缩文件没有密码
try:
fp.extractall(desPath)
fp.close()
print('No password')
return
#使用密码字典进行暴力破解
except:
try:
fpPwd = open('pwddict.txt')
except:
print('No dict file pwddict.txt in current directory.')
return
for pwd in fpPwd:
pwd = pwd.rstrip()
try:
if filename.endswith('.zip'):
for file in fp.namepst():
#对zip文件需要重新编码再解码,避免中文乱码
fp.extract(file, path=desPath, pwd=pwd.encode())
os.rename(desPath+''+file, desPath+''+file.encode('cp437').decode('gbk'))
print('Success! ====>'+pwd)
fp.close()
break
epf filename.endswith('.rar'):
fp.extractall(path=desPath, pwd=pwd)
print('Success! ====>'+pwd)
fp.close()
break
except:
pass
fpPwd.close()
if __name__ == '__main__':
filename = sys.argv[1]
if os.path.isfile(filename) and filename.endswith(('.zip', '.rar')):
decryptRarZipFile(filename)
else:
print('Must be Rar or Zip file')
更多Python相关技术文章,请访问Python教程栏目进行学习!
以上就是小编分享的关于python怎么破解压缩包密码的详细内容希望对大家有所帮助,更多有关python教程请关注环球青藤其它相关文章!
上一篇:怎么查看python版本?
下一篇:二进制数1001001转换成十进制数等于多少
就业培训申请领取
环球青藤
官方QQ群扫描上方二维码或点击一键加群,免费领取大礼包,加群暗号:青藤。 一键加群
最新文章
Python编程各地入口
环球青藤官方微信服务平台
刷题看课 APP下载
免费直播 一键购课
代报名等人工服务
Python编程热点排行