01-22-2012, 07:14 PM
I want to take a wordlist of words in the english dictionary and make the following variations:
- Generate all permutations of the words in upper and lower case.
pass
Pass
PAss
PASs
PASS
pAss
and so on.
- Prepend and append all numbers from 0 to 9999 to the words.
0Pass
1paSs
789Pass
67paSS078
and so on.
- I would also like all combinations of prepended and appended numbers and upper and lower case. In short, all possible combinations of words with and without two these variations.
How can i generate this wordlist and write it to a new file? Would this be a effective way of cracking phpass hashes? If not, what would be the best way of cracking reasonably complex phpass hashes? How can I include special characters without making the wordlist too complex?
- Generate all permutations of the words in upper and lower case.
pass
Pass
PAss
PASs
PASS
pAss
and so on.
- Prepend and append all numbers from 0 to 9999 to the words.
0Pass
1paSs
789Pass
67paSS078
and so on.
- I would also like all combinations of prepended and appended numbers and upper and lower case. In short, all possible combinations of words with and without two these variations.
How can i generate this wordlist and write it to a new file? Would this be a effective way of cracking phpass hashes? If not, what would be the best way of cracking reasonably complex phpass hashes? How can I include special characters without making the wordlist too complex?