1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 11:35:26 +02:00

dirb: add page (#6960)

This commit is contained in:
Juri 2021-10-17 02:12:21 +02:00 committed by GitHub
parent b436cd4474
commit bcf9a4ad8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
pages/linux/dirb.md Normal file
View file

@ -0,0 +1,20 @@
# dirb
> Scan HTTP-based webservers for directories and files.
> More information: <http://dirb.sourceforge.net>.
- Scan a webserver using the default wordlist:
`dirb {{https://example.org}}`
- Scan a webserver using a custom wordlist:
`dirb {{https://example.org}} {{path/to/wordlist.txt}}`
- Scan a webserver non-recursively:
`dirb {{https://example.org}} -r`
- Scan a webserver using a specified user-agent and cookie for HTTP-requests:
`dirb {{https://example.org}} -a {{user_agent_string}} -c {{cookie_string}}`