Generate Custom Wordlists in Termux Using Pydictor Tool

Pydictor is a custom password dictionary generator tool that can be used in Termux on Android for creating different types of wordlists and password combinations directly from the terminal. It supports pattern-based generation, custom keywords, character combinations, and multiple wordlist creation methods for security learning and testing purposes. Here’s what you can do with Pydictor on Android:

  • Create custom password wordlists.
  • Generate wordlists using patterns and rules.
  • Create numeric and character combinations.
  • Build target-based dictionaries.
  • Practice password dictionary generation techniques.

Installation Commands

Update Termux packages:

apt update && apt upgrade

Install Git and Python:

apt install git python -y

Clone the Pydictor repository:

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

Move to the tool directory:

cd pydictor

Give execution permission:

chmod +x pydictor.py

Run Pydictor:

python pydictor.py

Usage Commands

Show help menu:

python pydictor.py -h

Create numeric wordlist:

python pydictor.py -base d --len 6 6

Create lowercase wordlist:

python pydictor.py -base L --len 4 6

Create mixed numeric and lowercase wordlist:

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

Create mixed numeric, lowercase, and special character wordlist:

python pydictor.py -base dLc --len 6 10

Generate custom keyword wordlist:

python pydictor.py -chunk admin root test

Generate birthday wordlist:

python pydictor.py -plug birthday

Generated wordlists are automatically saved inside the results folder.

pydictor/results/base_filename1234.txt

You can open the generated wordlist file anytime using:

cd results && cat filename1234.txt

You can also move the wordlist file to device storage:

termux-setup-storage
mv filename123.txt /sdcard/

After running the commands, Pydictor will automatically generate custom password combinations and save the output if an output file is specified.

SHARE THIS POST: