#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os,sys
from unrar import rarfile
def rar_attack(file_name):
file_handle = rarfile.RarFile('test.rar')
handle_password = open('passwords.txt')
for pwd in handle_password:
pwd = pwd.rstrip()
try:
file_handle.extractall(path='test', pwd=pwd.encode())
print('Found:'+pwd)
break
except:
pass
handle_password.close()
file_handle.close()
if __name__=='__main__':
file_name = sys.argv[1]
if os.path.isfile(file_name) and file_name.endswith('.rar'):
rar_attack(file_name)
else:
print('Not RAR')
忘记rar密码python解决
最新推荐文章于 2024-09-17 10:07:45 发布
本文介绍了一种使用Python的rarfile库实现的自动化rar文件密码破解方法,通过读取passwords.txt中的密码尝试解压test.rar文件。如果找到匹配的密码,将文件内容提取到test目录。
摘要由CSDN通过智能技术生成