Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bobotig/cracker-ng
ZIP cracker, CCRYPT cracker, and others to come.
https://github.com/bobotig/cracker-ng
cpt crack cracker-ng password password-cracker zip
Last synced: 4 days ago
JSON representation
ZIP cracker, CCRYPT cracker, and others to come.
- Host: GitHub
- URL: https://github.com/bobotig/cracker-ng
- Owner: BoboTiG
- License: gpl-2.0
- Created: 2012-07-24T12:56:28.000Z (over 12 years ago)
- Default Branch: devel
- Last Pushed: 2022-10-05T07:40:18.000Z (about 2 years ago)
- Last Synced: 2024-05-01T18:55:53.092Z (7 months ago)
- Topics: cpt, crack, cracker-ng, password, password-cracker, zip
- Language: C++
- Homepage:
- Size: 8.45 MB
- Stars: 90
- Watchers: 9
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
Cracker-ng
==========Cracker-ng, a multiple file password finder.
For now, there are these modules:* **zip cracker** (zip, winzip, apm, ipa, and all zip based files),
* **ccrypt cracker** (cpt, antigift) [from the 2nd version (1.1) to the latest (1.10), 1.0 is buggy]What this tool does **not**:
* call a tierce tool like unrar or unzip to check the password (and will never)
* compute permutations (will change) or create wordlistsWhat this tool does:
* understand the data format (see src/*)
* check the password using the way official tool does
* use optimized routines
* read passwords from a wordlist or STDIN:
- cat, john, crunch or whatever you want for wordlist attackInstallation
---```shell
$ git clone https://github.com/BoboTiG/cracker-ng.git
$ cd cracker-ng
```For testers and contributors, always work with on the devel branch:
```shell
$ git checkout devel
```To show available commands:
```shell
$ make
```Example to build the ZIP module:
```shell
$ make zip
```Build the debug version (for testers and contributors):
```shell
$ DEBUG=1 make zip
```The final executable file will be stored into `bin` folder.
Man
---Usage: `cracker-ng -f FILE`
Examples with ZIP module:
```shell
# Using STDIN to use power of other tools
$ cat wordlist.lst | zipcracker-ng -f FILE -
$ john --incremental --stdout | zipcracker-ng -f FILE -
$ crunch 1 8 -f charset.lst lalpha | zipcracker-ng -f FILE -# Or using a wordlist
$ zipcracker-ng -f FILE -w wordlist.lst
```Why
---I wrote this tool when I saw poor resources we have on Unix for ZIP and
RAR files password cracking. Hope it will be helpful.License
-------```
Copyright (C) 2011-2022 by Mickaël 'Tiger-222' Schoentgen.Cracker-ng comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it under
certain conditions. See the GNU General Public Licence for details.
```