## What is it?
`gobuster` is an enumeration tool for web based foot-printing. It allows a user to enumerate directories, DNS servers and more.
## Usage
### Directory Enumeration:
Below is an example of a basic directory search with `gobuster`. Here we are using an example file in the `/usr/share/wordlists/dirb` directory.
```shell
gobuster dir -u http://<targetURL> --wordlist /usr/share/wordlists/dirb/<specificWordlist> -o OutputFile
```
However, `gobuster` often has to be run with a few different wordlists to find anything useful. So in this example, we are using `/usr/share/seclists/Discovery` specifically the `Web-Content` directory.
```shell
gobuster dir -u http://10.129.8.89 --wordlist /usr/share/seclists/Discovery/Web-Content/common.txt -o gobusterSecList
```
#### Seclists
`seclists` usually needs to be installed separately on Kali
```shell
sudo apt install seclists
```