kennyn510 / wpa2-wordlists

A collection of wordlists dictionaries for password cracking

Home Page:https://kennyvn.com/wordlists-password-dictionaries-for-kali-linux/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wpa2-wordlists

A collection of passwords and wordlists commonly used for dictionary-attacks using a variety of password cracking tools such as aircrack-ng, hydra and hashcat.

How To Use:

Useful one-liners for wordlist manipulation

Remove duplicates

awk '!(count[$0]++)' old.txt > new.txt

Sort by length

awk '{print length, $0}' old.txt | sort -n | cut -d " " -f2- > new.txt

Sort by alphabetical order

sort old.txt | uniq > new.txt

Merge multiple text files into one

cat file1.txt file2.txt > combined.txt

Remove all blank lines

egrep -v "^[[:space:]]*$" old.txt > new.txt

About

A collection of wordlists dictionaries for password cracking

https://kennyvn.com/wordlists-password-dictionaries-for-kali-linux/


Languages

Language:Shell 100.0%