Skip to content

wordlist

Manage wordlists for enumeration.

Usage

bash
wordlist SUBCOMMAND [options]

Subcommands

show

List available wordlists.

bash
wordlist show

Output:

Available built-in wordlists:
  - users
  - config
  - passwords
  - functions
  - database
  - storage
  - security
  - all

show <name>

Display wordlist contents.

bash
wordlist show users

Output:

Contents of wordlist 'users':
  user
  users
  User
  Users
  USER
  USERS
  account
  accounts
  ...

add <name> <words>

Create session wordlist.

bash
wordlist add custom admin,secret,internal

Then use:

bash
scan --rtdb -l custom

Built-in wordlists

NameTermsDescription
users45+User-related paths
config60+Configuration data
passwords50+Auth-related paths
functions80+Function names
database70+Database paths
storage40+Storage paths
security40+Admin/security terms
all200+All combined

Case variations

Each term generates 3 variations:

users → users, Users, USERS

Examples

View available wordlists

bash
wordlist show

See wordlist contents

bash
wordlist show config

Create custom wordlist

bash
wordlist add mylist admin,root,superuser
scan --rtdb -l mylist

Use in scans

bash
scan --rtdb -l users
scan --firestore -l config
scan --all -l all

See also