Password Attackswordlistspasswordsbrute-forcedictionaryrockyou

Wordlists

Collection of wordlists for password cracking, directory enumeration, and other security testing tasks. Includes the popular rockyou.txt wordlist with over 14 million passwords.

Description

The wordlists package provides a centralized directory at /usr/share/wordlists/ containing symbolic links to wordlists used by various Kali Linux tools. This includes wordlists for tools like dirb, dirbuster, metasploit, sqlmap, wfuzz, and others, making it easy to access common dictionaries for security testing.

The package's flagship wordlist is rockyou.txt, a comprehensive password list containing 14,344,392 entries extracted from a real-world data breach. It's provided compressed as rockyou.txt.gz (51MB) and expands to 134MB when decompressed.

Wordlists are essential for brute-force attacks, directory discovery, fuzzing, and password auditing across multiple security assessment scenarios.

How It Works

Wordlists operates as a package providing the /usr/share/wordlists/ directory structure with symbolic links to wordlists from other Kali tools. Users access these files directly in their security tools (hydra, medusa, dirb, gobuster, etc.). The rockyou.txt file contains real passwords from a 2009 RockYou.com breach, making it highly effective for dictionary attacks. Files are referenced by tools via standard paths without requiring the wordlists binary itself.

Installation

bash
sudo apt install wordlists

Examples

Lists all wordlists and symbolic links in the wordlists directory
ls -lh /usr/share/wordlists/
Decompresses the rockyou.txt.gz file to make it usable
gunzip /usr/share/wordlists/rockyou.txt.gz
Shows line count of rockyou.txt (14344392 passwords)
wc -l /usr/share/wordlists/rockyou.txt
Displays detailed file information for decompressed rockyou.txt (134M)
ls -lah /usr/share/wordlists/rockyou.txt
Shows help output listing all available wordlists and their paths
wordlists -h
Lists contents including dirb, metasploit, sqlmap.txt, wfuzz, and rockyou.txt.gz
ls /usr/share/wordlists/
Updated 2026-04-16kali.org ↗