Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
ZipRarHunter — ZipRarHunter 是一款功能强大的命令行道德黑客工具,旨在使用字典文件破解 ZIP 和 RAR 压缩文件的密码。 | Kitploit
工具/GitLabGitLab/s_r_e_e_r_a_j/ziprarhunter
密码破解密码攻击渗透测试实用工具与框架
GitLabs_r_e_e_r_a_j/ziprarhunter

ZipRarHunter

ZipRarHunter 是一款功能强大的命令行道德黑客工具,旨在使用字典文件破解 ZIP 和 RAR 压缩文件的密码。

查看仓库网站
114个月前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

ZipRarHunter

ZipRarHunter 是一款功能强大的命令行道德黑客工具,旨在使用字典破解 ZIP 和 RAR 存档文件的密码。它自动化了从加密存档中恢复密码的过程。

功能

  • 破解使用 ZipCrypto 和 AES-256 加密的 ZIP 文件

  • 使用多线程暴力破解攻击破解 RAR4 存档 (如果安装了付费版本的 UnRAR,也支持 RAR5)

  • 使用 --threads 参数(线程模式,默认值:4)或 --cores 参数(进程模式,默认值:使用所有 CPU 核心)提高破解速度。

  • 通过逐行读取字典(流式读取)实现高效内存使用

  • 自动检测 ZIP 加密方法

  • 支持编码回退(UTF-8 和 Latin-1),适用于各种字典

免责声明

ZipRarHunter 应负责任且合法地使用。未经明确许可使用本工具破解密码是非法的且不道德的。作者对任何滥用行为概不负责,本工具仅应在受控环境或您已获得适当授权的系统上使用。

要求

  • Linux 发行版: Debian、RHEL、Arch
  • Python 3.2 或以上版本: 确保系统已安装 Python 3.2 或更高版本。
  • 依赖项:
  • pyzipper(用于处理 ZIP 文件)
  • rarfile(用于处理 RAR 文件)

您可以使用以下命令安装所需的 Python 包:pip3

root@kitploit:~
pip3 install pyzipper
root@kitploit:~
pip3 install rarfile

Kali、Parrot、Ubuntu 23.04+、Arch Linux 用户请注意:

如果您看到如下错误:

root@kitploit:~
error: externally-managed-environment

请使用:

root@kitploit:~
PYVER=$(python3 -c "import sys; print(f'{sys.version_info[0]}.{sys.version_info[1]}')")
sudo pip3 install pyzipper rarfile --target /usr/local/lib/python${PYVER}/dist-packages --break-system-packages

然后按回车键

安装

  1. 克隆仓库:
root@kitploit:~
git clone https://gitlab.com/s_r_e_e_r_a_j/ZipRarHunter.git
  1. 进入 ZipRarHunter 目录:
root@kitploit:~
cd ZipRarHunter
  1. 确保所有依赖项已安装。如果未安装,请运行:
root@kitploit:~
pip3 install -r requirements.txt

Kali、Parrot、Ubuntu 23.04+、Arch Linux 用户请注意:

如果您看到如下错误:

root@kitploit:~
error: externally-managed-environment

请使用:

root@kitploit:~
PYVER=$(python3 -c "import sys; print(f'{sys.version_info[0]}.{sys.version_info[1]}')")
sudo pip3 install -r requirements.txt --target /usr/local/lib/python${PYVER}/dist-packages --break-system-packages

然后按回车键

  1. 进入 ZipRarHunter 目录
root@kitploit:~
cd ZipRarHunter
  1. 安装工具

    运行 install.py 脚本

root@kitploit:~
sudo python3 install.py

然后输入 y 进行安装

用法

ZipRarHunter 使用命令行参数指定目标文件、字典、文件类型(ZIP 或 RAR)以及线程或核心数量。

基本用法

root@kitploit:~
ziprarhunter -f /path/to/archive.zip -w /path/to/wordlist.txt -t zip
ziprarhunter -f /path/to/archive.rar -w /path/to/wordlist.txt -t rar

命令行参数

  • -f 或 --file:要破解的 ZIP 或 RAR 文件路径。

  • -w 或 --wordlist:包含潜在密码的字典文件路径。

  • -t 或 --type:存档类型。可接受值为 zip 或 rar。

  • --threads:用于破解的线程数(默认值:4)。与 --cores 互斥。

  • --cores:用于基于进程破解的 CPU 核心数(默认为所有核心)。与 --threads 互斥。

  • 使用 --threads(线程数,默认值 4)或 --cores(CPU 进程数,默认值 = 所有核心)。

示例命令

  1. 使用字典破解 ZIP 文件:
root@kitploit:~
ziprarhunter -f /path/to/archive.zip -w /path/to/wordlist.txt -t zip
  1. 使用字典破解 RAR 文件:
root@kitploit:~
ziprarhunter -f /path/to/archive.rar -w /path/to/wordlist.txt -t rar
  1. 使用 20 个线程破解 ZIP 文件:
root@kitploit:~
ziprarhunter -f /path/to/archive.zip -w /path/to/wordlist.txt -t zip --threads 20
  1. 使用 6 个 CPU 核心破解 ZIP 文件:
root@kitploit:~
ziprarhunter -f /path/to/archive.zip -w /path/to/wordlist.txt -t zip --cores 6

输出示例

root@kitploit:~
Password found : password123

卸载

运行 install.py 脚本

root@kitploit:~
sudo python3 install.py

然后输入 n 进行卸载

许可证

本项目采用 MIT 许可证 - 详情请参阅 LICENSE 文件。

下载工具
请勿同时使用两者。