hashcat and linux
#2
hashcat command line version applies masks of incremental lengths, i.e. first try ?a than ?a?a, etc. Seems like ?a?a?a?a?a?a [6] is taking a long time (no surprise there) so add "--pw-min=8" to jump straight to 8 character. There's also a --pw-max option if you want to use that.

So try:
hashcat -m 0 -a 3 --pw-min=8 md5_hash.txt ?a?a?a?a?a?a?a?a


Messages In This Thread
hashcat and linux - by kirini - 08-21-2015, 10:27 AM
RE: hashcat and linux - by rico - 08-21-2015, 11:21 AM
RE: hashcat and linux - by kirini - 08-21-2015, 11:57 AM
RE: hashcat and linux - by rico - 08-21-2015, 12:01 PM
RE: hashcat and linux - by mastercracker - 08-21-2015, 12:04 PM
RE: hashcat and linux - by kirini - 08-21-2015, 02:04 PM
RE: hashcat and linux - by philsmd - 08-21-2015, 02:05 PM