# FFUF Commands

## FFUF for Dir and Files

```python
ffuf -u http://10.10.110.62:8080/FUZZ -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -c -e php,txt,html 
```

## FFUF for vhost Scanning

We can use FFUF to Scan for the Virtual Hosts, i am using **names.txt** from seclists

```python
ffuf -u http://inlanefreight.htb -H "HOST: FUZZ.inlanefreight.htb" -w /usr/share/seclists/Discovery/DNS/namelist.txt
```

i have used filtering as well because i was getting 10918 and 0 size on every vhost so i filtered them

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

## FFUF using BurpSuite Request File

if you want to do some fuzzing in a BurpSuite Request, then you can  you can add the request in a file and pass the file to FFUF, just like we do with sqlmap

```javascript
ffuf -request ffuf-request -w /usr/share/seclists/Usernames/xato-net-10-million-usernames-dup.txt -request-proto http
```

i have used **-fs 781** because i wanted to filter size 781

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


---

# Agent Instructions: 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://notes.programmersecurity.com/web-pentesting-stuff/pentesting-port-80-443/ffuf-commands.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.
