https://github.com/algo7/shell-script-misc.
Shell Scripts for Miscellaneous Purposes
https://github.com/algo7/shell-script-misc.
bash bash-script precomputed-hash rainbow rainbow-table shell shell-script
Last synced: 5 months ago
JSON representation
Shell Scripts for Miscellaneous Purposes
- Host: GitHub
- URL: https://github.com/algo7/shell-script-misc.
- Owner: algo7
- License: mit
- Created: 2018-03-22T19:30:56.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-26T06:38:56.000Z (about 8 years ago)
- Last Synced: 2025-10-19T02:50:21.656Z (8 months ago)
- Topics: bash, bash-script, precomputed-hash, rainbow, rainbow-table, shell, shell-script
- Language: Shell
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Shell-Script-Misc.
Shell Scripts for Miscellaneous Purposes
## Usage:
cat infile | ./Rainbow_MD5 > outfile
cat infile | ./Rainbow_SHA1(256,384,512) > outfile
## Scripts Explanation:
### Rainbow_MD5.sh
Read a text file line-by-line and output the MD5 hash digest of each line (using pipe | ). The script can be use to calculate the MD5 precomputed hashlist of a wordlist.
### Rainbow_SHA1.sh
Read a text file line-by-line and output the MD5 hash digest of each line (using pipe | ). The script can be use to calculate the SHA1 precomputed hashlist of a wordlist.
### Rainbow_SHA256.sh
Read a text file line-by-line and output the MD5 hash digest of each line (using pipe | ). The script can be use to calculate the SHA256 precomputed hashlist of a wordlist.
### Rainbow_SHA384.sh
Read a text file line-by-line and output the MD5 hash digest of each line (using pipe | ). The script can be use to calculate the SHA384 precomputed hashlist of a wordlist.
### Rainbow_SHA512.sh
Read a text file line-by-line and output the MD5 hash digest of each line (using pipe | ). The script can be use to calculate the SHA512 precomputed hashlist of a wordlist.