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 upgradeInstall Git and Python:
apt install git python -yClone the Pydictor repository:
git clone https://github.com/LandGrey/pydictorMove to the tool directory:
cd pydictorGive execution permission:
chmod +x pydictor.pyRun Pydictor:
python pydictor.pyUsage Commands
Show help menu:
python pydictor.py -hCreate numeric wordlist:
python pydictor.py -base d --len 6 6Create lowercase wordlist:
python pydictor.py -base L --len 4 6Create mixed numeric and lowercase wordlist:
python pydictor.py -base dL --len 4 8Create mixed numeric, lowercase, and special character wordlist:
python pydictor.py -base dLc --len 6 10Generate custom keyword wordlist:
python pydictor.py -chunk admin root testGenerate birthday wordlist:
python pydictor.py -plug birthdayGenerated 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.txtYou 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.

