Page 1 of 1

How to make wordlist out of ANY file

Posted: Sun Nov 18, 2007 11:20 am
by Sethioz
:arrow: Finally!
I have searched for a tool that can simply convert any file into a SIMPLE wordlist.
*Wordlist is a txt file that has all words in a LIST (one word per line)

Actually you dont need any tool at all ...well not a special tool at least.
All you need is a HEX editor that can replace the values. I used Hex Workshop 4.23.
what you do is ... replace SPACE (HEX value 20) with NEW LINE (HEX value 0D 0A) ..and there you go.

well ofcourse if a input file has something else than space as word seperator you can simply replace that with ''0D 0A''
THAT way the file will STAY in the format it was...i had problems with UTF-8 unicode. I used a wordlist tool and it just fucked it up...took all UTF-8 characters out of it.
When you use HEX to replace word seperators with new lines, then you dont have that problem :)