kennyn510 / wpa2-wordlists

A collection of wordlists dictionaries for password cracking
https://kennyvn.com/wordlists-password-dictionaries-for-kali-linux/
1.25k stars 442 forks source link

Some of the list is less than 8 #1

Open patriotzhou opened 6 years ago

patriotzhou commented 6 years ago

WPA password is more than 8

svc-user commented 5 years ago

Better late than never!

awk '// {if(length($0) >= 8) print($0)}' wordlist.txt > newfile.txt

Will filter all lines in wordlist.txt that's less that 8 characters and output the lines longer that 8 characters to newfile.txt.

roneychan commented 5 years ago

I try..tx

noahbjohnson commented 5 years ago

someone wanna submit a PR if they get this to work?