cewl: add page (#3945)

Co-authored-by: Zlatan Vasović <zlatanvasovic@gmail.com>
client-spec/clarity
Alex 2020-03-29 00:15:32 +01:00 committed by GitHub
parent 4f3c097342
commit 4a1eb5d462
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

24
pages/linux/cewl.md Normal file
View File

@ -0,0 +1,24 @@
# cewl
> URL spidering tool for making a cracking wordlist from web content.
> More information: <https://digi.ninja/projects/cewl.php>.
- 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}}`