how to limit password character length
#10
Yeah, slightly faster but not near as fast as not filtering at all. String manipulation is just too slow.

So in this case what I'd suggest doing is pre-filtering your wordlist.

Code:
awk 'length < 7' wordlist.txt >wordlist_6.txt

Then run wordlist_6.txt instead of wordlist.txt


Messages In This Thread
RE: how to limit password character length - by epixoip - 03-02-2015, 07:10 AM