Forrest logo
tool overview
On this page you find all important commands for the CLI tool cewl. If the command you are looking for is missing please ask our AI.

cewl

Cewl (pronounced cool) is a command-line tool used for generating custom wordlists by spidering a target website or document. Developed in Ruby, it scans HTML pages and extracts all the unique words encountered. Cewl is particularly useful for password cracking and penetration testing purposes, as it helps in creating wordlists based on the specific target domain or content. Using cewl, one can easily spider a website and generate a wordlist containing all the unique words found on that site. The tool also enables the creation of wordlists from documents by parsing the provided file and extracting words from it. Cewl supports options like specifying the minimum/maximum length of words, excluding certain words, specifying a minimum occurrence frequency, and setting a depth limit for spidering. It can be utilized to perform targeted brute-force attacks, password strength analysis, and to test the effectiveness of various security measures. Cewl allows for efficient customization of wordlists based on the specific needs of an assessment, thereby enhancing the success rate of password cracking attempts. The flexibility of cewl enables it to be utilized with other tools in the penetration tester’s toolkit to strengthen their testing and auditing capabilities. Cewl is licensed under the GNU General Public License (GPL) and is available for free on various platforms including Linux, macOS, and Windows.

List of commands for cewl:

  • cewl:tldr:3cdf7 cewl: Output an alphanumeric wordlist from the given URL with words of minimum 5 characters.
    $ cewl --with-numbers --min_word_length ${5} ${url}
    try on your machine
    explain this command
  • cewl:tldr:40d41 cewl: Output a wordlist from the given URL in debug mode including email addresses.
    $ cewl --debug --email ${url}
    try on your machine
    explain this command
  • cewl:tldr:b774f cewl: Output a wordlist from the given URL using HTTP Basic or Digest authentication.
    $ cewl --auth_type ${select} --auth_user ${username} --auth_pass ${password} ${url}
    try on your machine
    explain this command
  • cewl:tldr:b9e52 cewl: Output a wordlist from the given URL through a proxy.
    $ cewl --proxy_host ${host} --proxy_port ${port} ${url}
    try on your machine
    explain this command
  • cewl:tldr:e9286 cewl: Create a wordlist file from the given URL up to 2 links depth.
    $ cewl --depth ${2} --write ${path-to-wordlist-txt} ${url}
    try on your machine
    explain this command
tool overview