From 4a1eb5d462ef9ea30387b8ad15e0997129da5a8d Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 29 Mar 2020 00:15:32 +0100 Subject: [PATCH] cewl: add page (#3945) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Zlatan Vasović --- pages/linux/cewl.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/cewl.md diff --git a/pages/linux/cewl.md b/pages/linux/cewl.md new file mode 100644 index 0000000000..57aefd30eb --- /dev/null +++ b/pages/linux/cewl.md @@ -0,0 +1,24 @@ +# cewl + +> URL spidering tool for making a cracking wordlist from web content. +> More information: . + +- Create a wordlist file from the given URL up to 2 links depth: + +`cewl --depth {{2}} --write {{path/to/wordlist.txt}} {{url}}` + +- Output an alpha-numeric wordlist from the given URL with words of minimum 5 characters: + +`cewl --with-numbers --min_word_length {{5}} {{url}}` + +- Output a wordlist from the given URL in debug mode including email addresses: + +`cewl --debug --email {{url}}` + +- Output a wordlist from the given URL using HTTP Basic or Digest authentication: + +`cewl --auth_type {{basic|digest}} --auth_user {{username}} --auth_pass {{password}} {{url}}` + +- Output a wordlist from the given URL through a proxy: + +`cewl --proxy_host {{host}} --proxy_port {{port}} {{url}}`