mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
527 B
Plaintext
30 lines
527 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# dirbuster
|
|
|
|
> Brute force directories and filenames on servers.
|
|
> More information: <https://www.kali.org/tools/dirbuster/>.
|
|
|
|
- Start in GUI mode:
|
|
|
|
`dirbuster -u {{http://example.com}}`
|
|
|
|
- Start in headless (no GUI) mode:
|
|
|
|
`dirbuster -H -u {{http://example.com}}`
|
|
|
|
- Set the file extension list:
|
|
|
|
`dirbuster -e {{txt,html}}`
|
|
|
|
- Enable verbose output:
|
|
|
|
`dirbuster -v`
|
|
|
|
- Set the report location:
|
|
|
|
`dirbuster -r {{path/to/report.txt}}`
|