This is dedicated to all those who think that the hatelist is corrupt. I assure you that it is not, it works perfect for me. All you have to do is to work your mind a little bit.
In order to open the hatelist you need a text editor.
Usually, a text editor cannot handle files larger than 512 MB.
So what we do is split the file into pieces.
There are some decent file splitters and mergers for windows but I suggest you do this in a Linux or Unix terminal.
So to split the file use the split command:
split --bytes=50m hatelist.txt hatelist_
This command will split hatelist.txt into files of 50 MB in size and name the various parts hatelist_aa, hatelist_ab and so on. You can change b for bytes, k for Kilobytes and m for Megabytes to specify the size.
Basically, that's it! Now you can use your favourite application to crack a password using the various hatelist files.
e.g. "aircrack-ng psk-*.cap -w hatelist_aa"
With aircrack it usually takes an hour to test the contents of the list.
If anyone wants to edit the list and remove the html tags, you can split the list into files of your prefered size and edit them on your own. Then you can merge the corrected lists of files into one big file with the cat command.
cat hatelist_* > mergedFile.txt
Hope this helps!