Here is a script I created to simplify merging all your .txt wordlists in into one single file..It will merge your wordlists, it will optimize your merged wordlist by removing any password under 8 characters and over 63 characters and to finalize the optimization process, it will alphabetically sort and delete all duplicate words. All you have to do is fallow the 3 steps in order and Fuse.sh does the rest. USAGE: Right click Fuse.sh script > properties > permissions > Execute - Allow executing file as program Code: Select All ./Fuse.sh Make sure all your wordlist files are in the same folder. Note: It will only merge .txt files Script by: ImJoJo
This script is so slow at removing duplicates! It can be made tremendously faster by adding Code: Select All export LC_ALL=C at the top. The locale has a big impact with grep and sort.