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