1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 09:15:22 +02:00
tldr/pages/linux/cewl.md
Managor 1f63ed5e22
linux*: refresh old pages part 1 (#16251)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2025-04-25 04:34:04 +03:00

24 lines
854 B
Markdown

# cewl
> URL spidering tool for making a cracking wordlist from web content.
> More information: <https://digi.ninja/projects/cewl.php#usage>.
- Create a wordlist file from the given URL up to 2 links depth:
`cewl {{[-d|--depth]}} 2 {{[-w|--write]}} {{path/to/wordlist.txt}} {{url}}`
- Output an alphanumeric wordlist from the given URL with words of minimum 5 characters:
`cewl --with-numbers {{[-m|--min_word_length]}} 5 {{url}}`
- Output a wordlist from the given URL in debug mode including email addresses:
`cewl --debug {{[-e|--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}}`