Goblin Wordlist Generator in Termux – Installation & Usage Commands

GoblinWordGenerator is a Termux tool used to create custom wordlists for security testing and learning. It can generate wordlists using personal details like name, birthday, and other inputs. It also allows you to set word length, use uppercase letters, and add special characters.

Installation Commands

Update and upgrade Termux packages:

pkg update && pkg upgrade -y

Install required dependencies:

pkg install git python -y

Clone the tool from GitHub:

git clone https://github.com/UndeadSec/GoblinWordGenerator.git

Give executable permission:

chmod +x *

Usage Commands

Start the tool.

python goblin.py

Enter size range for wordlist generation:

Size range for wordlist generation means the minimum and maximum length of words the tool will create. For example, 1:5 means it will generate words from 1 character up to 5 characters long. It controls how short or long the generated password list will be.

1:5

Enter personal details of target:

  • Choose whether to enter personal data: y
  • Enter First: Name name
  • Enter Last Name: last name
  • Enter Birthday: 01011999
  • Enter Month: 02
  • Enter Year: 02
  • Enter output file name for wordlist: my_wordlist.txt
  • Enable uppercase characters (y/n): y
  • Enable special characters (y/n): y

After completing these steps, the tool will generate a custom wordlist file based on your inputs.

READ ALSO  Python in Termux - Installation, Usage & Basic Commands

Leave a Comment