Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dirb: add page #6960

Merged
merged 8 commits into from
Oct 17, 2021
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions pages/linux/dirb.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# dirb

> Scan HTTP-based webservers for directories and files.
> More information: <http://dirb.sourceforge.net/>.
gutjuri marked this conversation as resolved.
Show resolved Hide resolved

- Scan a webserver using the default wordlist:

`dirb {{https://example.org}}`

- Scan a webserver using a non-default wordlist:
gutjuri marked this conversation as resolved.
Show resolved Hide resolved

`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}}`