https://github.com/4m3rr0r/phoenix
This is a bash script that generates hashes of passwords using various algorithms and cracks them using a wordlist.
https://github.com/4m3rr0r/phoenix
bash hash-cracking hash-generator hashcat hashing password-cracking-tool phoenix rainbow-table
Last synced: about 1 month ago
JSON representation
This is a bash script that generates hashes of passwords using various algorithms and cracks them using a wordlist.
- Host: GitHub
- URL: https://github.com/4m3rr0r/phoenix
- Owner: 4m3rr0r
- License: gpl-3.0
- Created: 2023-04-20T14:24:57.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-23T02:23:24.000Z (about 3 years ago)
- Last Synced: 2025-02-03T21:58:06.919Z (over 1 year ago)
- Topics: bash, hash-cracking, hash-generator, hashcat, hashing, password-cracking-tool, phoenix, rainbow-table
- Language: Shell
- Homepage:
- Size: 22.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# phoenix
This is a bash script that generates hashes for words in a given wordlist file. The supported hash types include MD4, MD5, SHA1, SHA2-224, SHA2-256, SHA2-384, SHA2-512, SHA3-224, SHA3-256, SHA3-384, SHA3-512, RIPEMD-160, BLAKE2b-512, NTML, and Whirlpool. The script can also crack a specified hash like ranibow table.
## Usage
Usage: phoenix.sh [OPTIONS]
Options:
- `-h`, `--help`: Display the help menu.
- `-v`, `--version`: Show the script version.
- `--hash HASH_TYPE`: Hash type (see supported types below).
- `-w`, `--wordlist WORDLIST`: Path to the wordlist file.
- `--crk hash`: Crack the specified hash.
Supported hash types:
- 00: MD4
- 0: MD5
- 1: SHA1
- 2: SHA2-224
- 3: SHA2-256
- 4: SHA2-384
- 5: SHA2-512
- 6: SHA3-224
- 7: SHA3-256
- 8: SHA3-384
- 9: SHA3-512
- 10: RIPEMD-160
- 11: BLAKE2b-512
- 12: NTML
- 13: Whirlpool
Examples:
```bash
# Generate MD5 hashes from a wordlist
$ ./phoenix.sh --hash 0 -w /path/to/wordlist.txt
# Crack the hash
$ ./phoenix.sh --crk hash -w wordlisthash.txt
# Show script version
$ ./phoenix.sh -v
# Show help menu
$ ./phoenix.sh --help
phoenix.sh -v # Show script version
phoenix.sh --help # Show help menu