da0be5172e02e4ad61d62632b172f39b6ca6da7c
bd_crack
Just a stupid and gay little script to simplify cracking breached passwords from breachdirectory.org using the provided hash and the 5 unhashed characters.
Usage
- Requires hashcat and a bash terminal
- visit breachdirectory.org and find the breached password you want
- copy the provided hash the the 5 unhashed characters of the password
- optionally select a custom charset for the crackin
Usage: ./bd_crack.sh <hash> <known 5 characters> <optional charset>
Optional charset format
- Default charset is luds meaning lower alpha, upper alpha, digits, and symbols+space
- Mix and match any of the following:
l= lower case alpha (a-z)u= upper case alpha (A-Z)d= digit (0-9)s= symbols + space (!"#$%&'()*+,-./:;<=>?@[]^_`{|}~)h= lower case hex (0-9a-f)H= upper case hex (0-9A-F)b= bytes (0x00-0xFF)
- Example: lower alpha, upper alpha, and digits:
ludex.bash bd_crack.sh c8ea28d3285e468961a76b5de75871fbe539808a passp lud - Example: upper alpha and symbols+space:
usex.bash bd_crack.sh c8ea28d3285e468961a76b5de75871fbe539808a passp us
- Mix and match any of the following:
- Example:
bash bd_crack.sh c8ea28d3285e468961a76b5de75871fbe539808a passp lud - Example:
bash bd_crack.sh c8ea28d3285e468961a76b5de75871fbe539808a passp
Description
Languages
Shell
100%