[fingerprint] combinator attack v0.13 bad, v0.15 good FYI upgrade!
#2
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.


Messages In This Thread
RE: [fingerprint] combinator attack v0.13 bad, v0.15 good FYI upgrade! - by Mangix - 08-28-2013, 02:45 AM