Wordlists



Creating specific wordlists...

Use crunch for most things but if you don't know the length of the password output because you are appending a file for example something like this works nicely.


#First lets make a file with 1 number followed by 1 lowercase letter and output to a file
for i in {0..9}; do; for x in {a..z}; do; echo $i$x >> firstout.txt; done; done


#Next lets iterate through the firstout.txt file and append the wordlist to each result and then adding the output to a new file.
for i in `cat firstout.txt`; do; for x in `cat wordlist.txt`; do; echo $i$x >> big_list.txt; done; done

No comments:

Post a Comment