如何破解受密码保护的 zip 文件的密码?

如何破解受密码保护的 zip 文件的密码?

我已经安装了fcrackzip。的帮助页面fcrackzip显示

$ fcrackzip --h

fcrackzip version 1.0, a fast/free zip password cracker
written by Marc Lehmann <[email protected]> You can find more info on*emphasized text*
http://www.goof.com/pcg/marc/

USAGE: fcrackzip
          [-b|--brute-force]            use brute force algorithm
          [-D|--dictionary]             use a dictionary
          [-B|--benchmark]              execute a small benchmark
          [-c|--charset characterset]   use characters from charset
          [-h|--help]                   show this message
          [--version]                   show the version of this program
          [-V|--validate]               sanity-check the algortihm
          [-v|--verbose]                be more verbose
          [-p|--init-password string]   use string as initial password/file
          [-l|--length min-max]         check password with length min to max
          [-u|--use-unzip]              use unzip to weed out wrong passwords
          [-m|--method num]             use method number "num" (see below)
          [-2|--modulo r/m]             only calculcate 1/m of the password
          file...                    the zipfiles to crack

methods compiled in (* = default):

 0: cpmask
 1: zip1
*2: zip2, USE_MULT_TAB

如何使用 fcrackzip 或任何其他可用工具破解受密码保护的 zip 文件?

答案1

有几种方法可以做到这一点。

  1. 破解压缩包:要暴力破解,你可以使用

     fcrackzip -u -b -v file.zip 
    

    标志-u可剔除不正确的密码,-b用于暴力破解,-l用于指定密码长度,例如: 。您可以使用带有和标志的4-8密码列表,如下所示:-D-p

     fcrackzip -u -b -D -p /home/Desktop/passwordlist.txt file.zip
    
  2. 破解工具

     rarcrack --type zip/7z/rar file.zip 
    

    我喜欢这个,因为它将破解进度保存到一个名为的文件中yourfilename.zip.xml,下次使用时将从上次中断的地方继续。

  3. 开膛手约翰:首先使用生成哈希

     zip2john file.zip > whateveryouwanttocallit.txt 
    

    或使用rar2john,具体取决于文件,然后:

     john --format=zip whateveryoucallit.txt
    

    或者--format=rar

    所有这些都可能需要一段时间,具体取决于密码的长度和字符,但你就可以了。

    如果未安装任何这些工具,请使用以下方法安装

     sudo apt-get install rarcrack/john/fcrackzip 
    

    如果这是仍然这还不够,您可以下载一个快速的 Windows zip 破解程序,例如 Passper for Zip,并使用 Wine 运行它。

相关内容