03-02-2015, 07:10 AM
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.
Then run wordlist_6.txt instead of wordlist.txt
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