08-28-2013, 02:45 AM
you might wish to sort your wordlists by length as suggested by atom in the release notes for 0.15. Actually this is a good idea for any version of oclhashcat. You can use the splitlen utility to do so as well as a bash script like so...
awk '{print length, $0}' < wordlist.dict | sort -n | cut -d ' ' -f 2- > wordlist2.dict && rm wordlist.dict && mv wordlist2.dict wordlist.dict
The main difference is that splitlen generates 15 files and my solution resorts your dictionary.
awk '{print length, $0}' < wordlist.dict | sort -n | cut -d ' ' -f 2- > wordlist2.dict && rm wordlist.dict && mv wordlist2.dict wordlist.dict
The main difference is that splitlen generates 15 files and my solution resorts your dictionary.