THIS TOOL SPECIALLY GENERATE THE ALL TYPES OF WORDLIST LIKE HASH PASSWORDS , NUMERIC , ALPHA-NUMERIC
- WORDLIST GENERATOR is a lightweight, efficient Python script designed to generate custom wordlists for security testing, password recovery, or hash analysis.
- Created by Amit Devi (whitedevil-21), it allows users to customize character sets, lengths, and even generate pre-hashed lists in MD5 or SHA-256.
- Custom Character Sets: Choose between numeric, alphabetic, alphanumeric, or full special character sets.
- Flexible Lengths: Generate combinations of any specified length using itertools.
On-the-fly Hashing: Export your wordlist as:
- Plaintext
- MD5 Hashes
- SHA-256 Hashes
- pkg update && upgrade -y
- pkg install git
- pkg install python
- git clone https://github.com/whitedevil-21/WORD-LIST-GENERATOR.git
- cd WORD-LIST-GENERATOR
- python word.py
- Select Character Set: Choose the complexity of the strings (e.g., just numbers or full ASCII).
- Set Length: Enter the length of the words to generate.
- Hashing Option: Choose if you want the output to be hashed (MD5/SHA-256) or kept as plaintext.
- Save File: Provide a filename (e.g., passwords.txt) to save your results.
If you select Numeric [1], Length 3, and Plaintext [0], your output file will look like this:
- Plaintext 000 001 002 ... 999
Note: This tool is intended for educational purposes and authorized security testing only. Use it responsibly and never attempt to gain unauthorized access to systems you do not own or have explicit permission to test.
- AMIT DEVI(whitedevil-21)