Sinisterly
[HC Official] WordsTweak - merge large wordlists, extend wordlists - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Hacking Tools (https://sinister.ly/Forum-Hacking-Tools)
+--- Thread: [HC Official] WordsTweak - merge large wordlists, extend wordlists (/Thread-HC-Official-WordsTweak-merge-large-wordlists-extend-wordlists)



[HC Official] WordsTweak - merge large wordlists, extend wordlists - Deque - 09-19-2013

WordsTweak

WordsTweak is a tool I wrote in Java. It enables you to extend your wordlists by:

* merging wordlists into one and removing duplicates
* merging huge wordlists (i.e. several GB) (this is possible by using external merge sort)
* adding words with all lower-upper-case combinations
* or just upper- and lower-case of the first letter
* adding leetspeak versions of the words
* appending numbers to the very end of the words

Note: This is just an Alpha version. I wasn't able to test all of the functions by now. I would be very grateful if you tell me any bugs you encounter.

Screenshot:

[Image: e3w3qpwy.png]


Usage:


[Image: lmb76bdp.png]

Source: https://github.com/katjahahn/WordsTweak


RE: [HC Official] WordsTweak - merge large wordlists, extend wordlists - Psycho_Coder - 09-19-2013

Thank you for this tool. It sounds great and will be testing this right away.


RE: [HC Official] WordsTweak - merge large wordlists, extend wordlists - sp4m123 - 12-08-2013

This generation tool, there are in the Google search, online version


RE: [HC Official] WordsTweak - merge large wordlists, extend wordlists - sp4m123 - 12-08-2013

This generation tool, there are in the Google search, online version


RE: [HC Official] WordsTweak - merge large wordlists, extend wordlists - h3r0 - 09-10-2014

The combining and duplicate handling could also be done with this

Code:
cat file1 >> file2;cat file2 | awk '!a[$0]++' > output

#linuxmasterrace


RE: [HC Official] WordsTweak - merge large wordlists, extend wordlists - ShawnReynolds - 09-10-2014

Does it only join two text files, or can it do more? Also, is it possible to use with word documents?


RE: [HC Official] WordsTweak - merge large wordlists, extend wordlists - h3r0 - 09-10-2014

(09-10-2014, 10:03 PM)VallexKoten Wrote: Does it only join two text files, or can it do more? Also, is it possible to use with word documents?

It isn't going to work with word documents. Why would you have a wordlist that is a word document? And if you read the usage it only uses two files. But you could easily do more by chaining your commands.