-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
111 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
## HashCracker v1.0.0 | ||
|
||
Hashes supported: | ||
|
||
- md5 | ||
- sha1 | ||
- sha224 | ||
- sha256 | ||
- sha384 | ||
- sha512 | ||
- bcrypt (Cannot identify) | ||
|
||
--- | ||
|
||
## HashCracker v1.0.1 | ||
|
||
Hashes supported: | ||
|
||
- md5 | ||
- sha1 | ||
- sha224 | ||
- sha256 | ||
- sha384 | ||
- sha512 | ||
- bcrypt (Cannot identify) | ||
|
||
--- | ||
|
||
- Bug fixes | ||
- Installation script | ||
- Documentation | ||
|
||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<h1 align="center">HashCracker</h1> | ||
|
||
<p align="center">A simple Hash Cracking tool developed in Python 3</p> | ||
|
||
> For educational purposes | ||
## Libraries | ||
|
||
- hashid >= 3.1.4 | ||
- bcrypt >= 3.2.0 | ||
|
||
[hashID](https://github.com/psypanda/hashID) used for hash identification | ||
|
||
[bcrypt](https://pypi.org/project/bcrypt/) used for bcrypt hashs creation | ||
|
||
## OS Support | ||
|
||
- Windows | ||
- Linux | ||
- Mac? - Not tested | ||
|
||
## Installation | ||
|
||
- Clone the repo and cd into directory | ||
```bash | ||
git clone https://github.com/ReddyyZ/HashCracker.git && cd HashCracker | ||
``` | ||
|
||
- Set permissions | ||
```bash | ||
chmod +x install.sh | ||
``` | ||
|
||
- Execute installation script | ||
```bash | ||
sudo ./install.sh | ||
``` | ||
|
||
- Happy Hacking! | ||
```bash | ||
hashcracker -h | ||
``` | ||
|
||
## How to use | ||
|
||
OPTIONS | EXPLANATION | ||
------- | ----------- | ||
-w, --wordlist | Wordlist path | ||
-m, --mode | Specify the hash type | ||
-t, --threads | Threads count | ||
--- | ||
|
||
- Try to identify the hash | ||
```bash | ||
hashcracker -w rockyou.txt 5f4dcc3b5aa765d61d8327deb882cf99 | ||
``` | ||
|
||
- Specify the hash to crack | ||
```bash | ||
hashcracker -w rockyou.txt -m md5 5f4dcc3b5aa765d61d8327deb882cf99 | ||
``` | ||
|
||
--- | ||
|
||
<h2 align="center"></> by <a href="https://github.com/ReddyyZ">ReddyyZ</a></h2> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
echo -e "Installing Hash Cracker...\n" | ||
|
||
sudo apt-get install python3 python3-dev python3-pip | ||
python3 -m pip install -r requirements.txt | ||
mkdir -p /usr/share/hashcracker/ | ||
cp hashcracker.py /usr/share/hashcracker/hashcracker.py | ||
ln -s /usr/share/hashcracker/hashcracker.py /usr/bin/hashcracker | ||
|
||
echo "Hash Cracker installed!" |