-f : specify the hash that has to be cracked (in .txt format)
-w : specify the wordlist (dictionary) to brute-force
-a : Specify the hashing algorithm (Supports md5,sha1,sha256 and NLTM)
python3 console-cracker.py -m decrypt -f <hashfile> -w <wordlist> -a <hashing algorithm>
-a : Specify the hashing algorithm (Supports md5,sha1,sha256 and NLTM)
-p : Specify the word/password that you want to encrypt
python3 console-cracker.py -m encrypt -p <word> -a <hashing algorithm>
python3 gui-cracker.py
1st - Specify hashing algorithm
2nd - Specify hash to be cracked
3rd - Select a wordlist
4th - Decrypt (Click the button)
1st - Specify hashing algorithm
2nd - Specify word to encrypt
3rd - Encrypt (Click the button)
- tkinter module : run
sudo apt-get install python3-tk