HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

dirbuster — Brute force directories and filenames on servers. More information: <https://www.kali.org/tools/dirb

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandfilenamesanddirbusterforcedirectoriesclibrute
linux

Problem

How to use the dirbuster command: Brute force directories and filenames on servers. More information: <https://www.kali.org/tools/dirbuster/>.

Solution

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

Code Snippets

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

Context

tldr-pages: linux/dirbuster

Revisions (0)

No revisions yet.