首頁 > 軟體

Python如何破解壓縮包密碼

2022-05-21 13:01:41

簡介:

破解rar和zip壓縮包。Windows下使用PyCharm軟體。

1.步驟

1.環境

  • 指令pip install 安裝。
  • 如果是rar檔案需要把rar安裝包下的Rar.exe和UnRar.exe,放在對應專案venvScripts的路徑下。
  • import失敗時,需要在File->Settings->Project Interpreter新增對應的模組。

2.判斷檔案格式

 type = os.path.splitext(path)[-1][1:]
if type == "zip":
elif type == "rar":

3.判斷是否有密碼

 type = os.path.splitext(path)[-1][1:]
        if type == "zip":
                fileGet = zipfile.ZipFile(path)
                with fileGet as z:
                    for l in z.infolist():
                        is_encrypted = l.flag_bits & 0x1
                        if is_encrypted:
                            print("have password ")
                            break
                        else:
                            pass
 
        elif type == "rar":
            fileGet = rarfile.RarFile(path)
            with fileGet as z:
                if z.needs_password():
                    print("have password ")
                else:
                    print("no password")
                    return

4.密碼字典 自己寫或者下載相應的軟體生成。

5.解壓檔案

1.zip和rar

fileGet = zipfile.ZipFile(path)
fileGet = rarfile.RarFile(path)

2.解壓

 fileExtr.extractall(pwd=password)

2.程式碼

import sys
import zipfile
import rarfile
import threading
import datetime
import os
import subprocess
import  getopt
i = 0
fileGet = ""
class MyThread(threading.Thread):
    def __init__(self, func, args, name=''):
        threading.Thread.__init__(self)
        self.name = name
        self.func = func
        self.args = args
        self.result = self.func(*self.args)
    def get_result(self):
        try:
            return self.result
        except Exception:
            return None
def extractFile(fileExtr, password, fileType):
    try:
        encodestr = str.encode(password)
        if (fileType == "zip"):
           fileExtr.extractall(pwd=str.encode(password))
        else:
            fileExtr.extractall(pwd=password)
        global i
        i = i + 1
        print("search count : %d,real password is : %s" % (i, password))
        return password
    except:
        i = i + 1
        print("search count : %d,test password : %s, err:%s" % (i, password, sys.exc_info()[0]))
        pass
def mainStep():
    path = input("please input path:")
    try:
        if os.path.exists(path) == False:
            print("%s : path error!"%(path))
            return
        type = os.path.splitext(path)[-1][1:]
        if type == "zip":
                fileGet = zipfile.ZipFile(path)
                with fileGet as z:
                    for l in z.infolist():
                        is_encrypted = l.flag_bits & 0x1
                        if is_encrypted:
                            print("have password ")
                            break
                        else:
                            pass
                fileGet = zipfile.ZipFile(path)
        elif type == "rar":
            fileGet = rarfile.RarFile(path)
            with fileGet as z:
                if z.needs_password():
                    print("have password ")
                else:
                    print("no password")
                    return
        else:
            print("file not right")
            return
        pwdLists = open("D:Python工程mutou.txt")
        startTime = datetime.datetime.now()
        for line in pwdLists.readlines():
            Pwd = line.strip('n')
            t = MyThread(extractFile, (fileGet, Pwd, type))
            t.start()
            if (t.get_result() is Pwd):
                break
        endTime = datetime.datetime.now()
        timeSpan = endTime - startTime
        print("search time:%ss" % (timeSpan.total_seconds()))
    except:
       print("err:%s" % sys.exc_info()[0])
if __name__ == '__main__':
    mainStep()

1.線上偵錯

2.指令碼執行

  • cmd 視窗開啟方式:右鍵開始選單,選擇‘命令提示字元(管理員)’即可。或者從開始選單->執行->輸入cmd,回車。
  • 關於 cd 命令:用於改變當前目錄路徑。使用方式:cd[空格][路徑]。例如 cd d:/Python27/Mytest 轉到該路徑下。
  • 注意:如果當前碟符不是 D 盤,需要先轉到 D 盤,輸入 d: 回車即可。然後才可以使用 cd d:/Python27/Mytest 。
  • 輸入python test.py。test.py是對應的檔名。

到此這篇關於Python如何破解壓縮包密碼的文章就介紹到這了,更多相關Python破解壓縮包密碼內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com