Results 1 to 7 of 7

Thread: Wordlist Converter

  1. #1
    Join Date
    2013-Mar
    Posts
    12

    Wordlist Converter

    After many years of absorbing information, how to's, and knowledge from the security community, I'm finally giving back. I've created a python script that will take a wordlist, parse through it, and will spit out a new wordlist based on options chosen by the end user. I've tried to include as many "transformation" options as possible.

    You can download it, use it, and distribute it freely, I just ask you give credit and acknowledge the work I've done. I'm also interested in getting feedback on features you'd like to see or on things that could be implemented differently. Again, the goal of the project was to give the end user as many transformation options as possible.

    You can find the script here:

    http://blu3gl0w13.github.io/wordlistconverter-1.1/

    The script WILL need to be installed. Brief installation instructions are in the README.txt file. Depending on options given to setup.py, the default location for the final wlc.py script will be /usr/local/bin

    Enjoy.

    Blu3Gl0w13

  2. #2
    Join Date
    2013-Mar
    Posts
    12
    Added an option to make an e-mail wordlist for social engineering engagements or email harvesting engagements. I recommend having a firstname list and a lastname wordlist to be most beneficial.


    git clone https://github.com/blu3gl0w13/wordlistconverter-1.1

  3. #3
    Join Date
    2013-Mar
    Posts
    12
    Added some colorization, hashing options, renamed the repo for easier use and scalability, added installers for specific OS's, and included some pre-made wordlists (including a first name and last name list).

    New Install:

    cd /opt

    git clone https://github.com/blu3gl0w13/wordlistconverter

    cd wordlistconverter

    ./install-linux

    Update Only

    git pull https://github.com/blu3gl0w13/wordlistconverter

    ./install-linux

    Cheers.

    BG

  4. #4
    Thank you, Blu3ggl0w13. I will try it out.

  5. #5
    Join Date
    2013-Mar
    Posts
    12
    Ok, it's been a year since the last update. I apologize, work got crazy… anyways, version 1.1.3 is up. I fixed a pretty bad coding error on my part when processing more than one wordlist. I also added functionality to create a username wordlist, and adjusted the hashing functionality to store the hash in the following format: "password:hash" for easier lookup. As always, send me any bugs you find or any ideas for improvement.

    https://github.com/blu3gl0w13/wordlistconverter.git

  6. Someone Help me , is their any Tool using which i can Filter word according to Their Length. Like from an Wordlist/Dictionary file i want to separate those words whose Length is 8. So how do this ?? how i separate only 8 characters words from Dictionary ??

  7. #7
    Join Date
    2014-Apr
    Location
    Down Under
    Posts
    315
    This command from BMO blog is showing that being done with the rockyou.txt wordlist.

    cat rockyou.txt | sort | uniq | pw-inspector -m 8 -M 63 > newrockyou.txt
    chown -R us ./base

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •