Choose a wordlist you want to use
cd wpa2-wordlists/Wordlists/Crackdown2016
Decompress (if applicable)gunzip *.gz
Merge all text files into onecat *.txt >> full.txt
awk '!(count[$0]++)' old.txt > new.txt awk '{print length, $0}' old.txt | sort -n | cut -d " " -f2- > new.txt
sort old.txt | uniq > new.txt
cat file1.txt file2.txt > combined.txt
egrep -v "^[[:space:]]*$" old.txt > new.txt







Post a Comment