# ffuf wfuzz feroxbuster gobuster

## gobuster

```bash
# directory mode
gobuster dir -u IP -w WORDLIST -x EXTENSION -t 70

# vhosts mode
# try -r if need to use wildcard
gobuster vhost -u DOMAIN|IP -w WORDLIST -t 100 [-r]
gobuster dns -d DOMAIN -w [/usr/share/seclists/Discovery/DNS/subdomains-top1million-110000.txt] -t 30

# proxy
--proxy scheme://IP:PORT (ex. socks5://127.0.0.1:6900)
```

## wfuzz

```bash
# directory mode
wfuzz -c -t 60 -w WORDLIST -u IP/FUZZ [-b COOKIE] [-d POST-DATA] [-H HEADER] [-z TYPE,PAYLOAD]
wfuzz -c -z file,WORDLIST [flags] [-d POST-DATA] [URL/FUZZ | URL?param=FUZZ]
-c: show output in color
-z: alias for -z file,WORDLIST; can do -z range,1-100

# vhosts mode
wfuzz -c -w WORDLIST -u DOMAIN -H "HOST: FUZZ.DOMAIN" [--hh ignore-errors-chars]

--hc: status code to ignore
--hw: word length to ignore
--hh: char length to ignore
--hl: line length to ignore
```

## ffuf

```bash
ffuf -ic -w WORDLIST -e EXTENSION -u IP/FUZZ
-ic ignore comments in wordlist
-e Comma separated list of extensions. Extends FUZZ keyword.
-H header
-mc match status code for all requests (show only these status codes)
-ml match lines
-mw match words
-ms match size

-fc filter status code from response
-fl filter lines
-fw filter words
-fs filter size

# can define multiple wordists and use incase of user:pass
ffuf -w WORDLIST_USER:W1,WORDLIST_PASS:W2 -X POST -d "username=W1&password=W2" -H "Content-Type: application/x-www-form-urlencoded" -u http://MACHINE_IP/login -fc 200

# will use POST request
-d  'data'
```

## feroxbuster

```bash
feroxbuster -u IP -t 90 -x EXTENSIONS -w WORDLIST
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://kashz.gitbook.io/kashz-jewels/tricks/ffuf-wfuzz-feroxbuster-gobuster.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
