Pydictor: Custom Password Wordlist Generator Tool

Pydictor is a simple Python tool that helps you create custom password wordlists directly in Termux. You can generate wordlists using letters, numbers, custom characters, patterns, prefixes, and suffixes. It is a useful tool for learning password dictionary generation and basic cybersecurity in a simple way.

Features of Pydictor Tool:

  • Generate custom password dictionaries.
  • Create wordlists using patterns.
  • Build dictionaries from custom characters.
  • Apply encoding to generated words.
  • Filter results using regex.
  • Learn password auditing and security testing.

Installation Commands

Copy the commands below and run them one by one to install Pydictor and start creating custom password wordlists.

Update Termux packages.

pkg update && pkg upgrade -y

Install the required packages.

pkg install git python -y

Clone the Pydictor repository.

git clone https://github.com/LandGrey/pydictor.git

Move into the project directory.

cd pydictor

Run Pydictor.

python pydictor.py

Pydictor is now installed and ready to use.

Usage Commands

After installing Pydictor in Termux, you can use different commands to generate custom password wordlists, apply filters, add prefixes or suffixes, and save the generated files.

Display the help menu.

python pydictor.py -h

Generate a dictionary using digits.

python pydictor.py -base d

Generate a dictionary using lowercase letters.

python pydictor.py -base L

Generate a dictionary using custom characters.

python pydictor.py -char abc123

Generate words with a custom length.

python pydictor.py -base dL --len 4 8

Add a prefix to generated words.

python pydictor.py -base dL --head admin

Add a suffix to generated words.

python pydictor.py -base dL --tail 123

Save the generated dictionary to a custom directory.

python pydictor.py -base dL -o output

By default, Pydictor saves all generated wordlist files inside the results directory. You can open that directory using:

cd results

List all generated wordlists:

ls

Overview

Pydictor is a simple and useful tool for generating custom password wordlists in Termux. It offers many options to create dictionaries based on your requirements, making it a great tool for learning password auditing and cybersecurity in a safe and educational environment.

SHARE THIS POST: