> For the complete documentation index, see [llms.txt](https://kyou00.gitbook.io/xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kyou00.gitbook.io/xyz/commands/view/linux/web-enumeration/ffuf-wfuzz.md).

# ffuf/wfuzz

{% code overflow="wrap" %}

```
sudo ffuf -w /usr/share/wordlists/seclists/Discovery/DNS/namelist.txt -H "Host: FUZZ.acmeitsupport.thm" -u http://10.10.207.90


sudo ffuf -w /usr/share/wordlists/seclists/Discovery/DNS/namelist.txt -H "Host: FUZZ.acmeitsupport.thm" -u http://10.10.207.90 -fs 2395
```

{% endcode %}

Change the -fs based on the error size&#x20;

See if there is a size meaning there will be a content in the page

<figure><img src="/files/HyaV3kgHFYybILEQW5GB" alt=""><figcaption></figcaption></figure>

{% code overflow="wrap" %}

```
ffuf -w valid_usernames.txt:W1,/usr/share/wordlists/seclists/Passwords/Common-Credentials/10-million-password-list-top-100.txt:W2 -X POST -d "username=W1&password=W2" -H "Content-Type: application/x-www-form-urlencoded" -u http://10.10.18.15/customers/login -fc 200


ffuf -w passwords.txt:FUZZ -u https://0abf00b50407080a830c0211000700b6.web-security-academy.net/login -X POST -d 'username=al&password=FUZZ' -H "Content-Type: application/x-www-form-urlencoded"
```

{% endcode %}

* -fc status code

{% code overflow="wrap" %}

```
ffuf -w /usr/share/wordlists/seclists/Discovery/Web-Content/directory-list-2.3-small.txt -u http://94.237.62.149:55270/FUZZ
```

{% endcode %}

{% code overflow="wrap" %}

```
ffuf -w /usr/share/wordlists/seclists/Discovery/Web-Content/directory-list-2.3-small.txt -u http://94.237.62.149:55270/blog/FUZZ.php
```

{% endcode %}

* Bruteforcing with extensions php

```
-s 
```

* silent

{% code overflow="wrap" %}

```
ffuf -u http://archive.academy.htb:52527/indexFUZZ -w /usr/share/wordlists/seclists/Discovery/Web-Content/web-extensions-big.txt
```

{% endcode %}

{% code overflow="wrap" %}

```
ffuf -u http://83.136.254.223:37645/forum/FUZZ -w /usr/share/wordlists/seclists/Discovery/Web-Content/directory-list-2.3-small.txt -recursion -recursion-depth 1 -e .php -v
```

{% endcode %}

{% code overflow="wrap" %}

```
ffuf -w /usr/share/wordlists/seclists/Discovery/DNS/subdomains-top1million-5000.txt -u http://academy.htb:36035/ -H 'Host: FUZZ.academy.htb' -fs 986
```

{% endcode %}

{% code overflow="wrap" %}

```
ffuf -w /usr/share/wordlists/seclists/Discovery/Web-Content/burp-parameter-names.txt -u http://admin.academy.htb:36035/admin/admin.php?FUZZ=key -fs 798
```

{% endcode %}

{% code overflow="wrap" %}

```
ffuf -w /usr/share/wordlists/seclists/Discovery/Web-Content/burp-parameter-names.txt -u http://admin.academy.htb:36035/admin/admin.php -X POST -d 'FUZZ=key' -H 'Content-Type: application/x-www-form-urlencoded' -fs 798
```

{% endcode %}

{% code overflow="wrap" %}

```
ffuf -w ids.txt -u http://admin.academy.htb:36035/admin/admin.php -X POST -d 'id=FUZZ' -H 'Content-Type: application/x-www-form-urlencoded' -fs 768
```

{% endcode %}

{% code overflow="wrap" %}

```
ffuf -u http://academy.htb:52527/indexFUZZ -w /usr/share/wordlists/seclists/Discovery/Web-Content/web-extensions.txt
```

{% endcode %}

* htb - attacking web with ffuf

<pre data-overflow="wrap"><code><strong># First save the burpsuite request that have "usernamme=sadf&#x26;password=asdasd"
</strong><strong># Right click then find the "copy to file"
</strong><strong># After that change the "password=asdd" to "password=FUZZ"
</strong><strong>
</strong><strong># the -fs 1814 will remove the response size 1814
</strong>ffuf -request req.txt -request-proto http -w /usr/share/wordlists/seclists/Passwords/xato-net-10-million-passwords-10000.txt -fs 1814
</code></pre>

<pre data-overflow="wrap"><code><strong># It will find the word admin in the page as it iterates
</strong>ffuf -u http://localhost/labs/e0x02.php?account=FUZZ -w number1000-2000.txt -mr "admin"
</code></pre>


---

# 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, and the optional `goal` query parameter:

```
GET https://kyou00.gitbook.io/xyz/commands/view/linux/web-enumeration/ffuf-wfuzz.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
