Create Custom Password List Using CUPP – Installation & Commands

CUPP (Common User Password Profiler) is a wordlist generator that creates passwords based on personal information like name, birthdate, pet name, and more. It is useful for security testing and password strength analysis.

Installation Commands

Update Termux and install required packages:

pkg update && pkg upgrade && pkg install git python -y

Clone the GitHub repository:

git clone https://github.com/Mebus/cupp.git

Move into the directory:

cd cupp

Run the tool:

python cupp.py -h

Create a global command:

ln -s $PWD/cupp.py $PREFIX/bin/cupp

Now you can run:

cupp -h

Usage Commands

Create a custom wordlist:

cupp -i

Follow the interactive questions:

  • First name
  • Last name
  • Nickname
  • Birthdate
  • Partner name
  • Pet name

Generate wordlist from existing profile:

cupp -w wordlist.txt

Download common wordlists:

cupp -l

Improve existing wordlist:

cupp -a wordlist.txt
READ ALSO  Gobuster in Termux – Installation and Usage Commands

Leave a Comment