# wfuzz

**#Fuzzing a specific domain**&#x20;

wfuzz -H ‘HOST: FUZZ.shuriken.local’ -u ‘<http://10.10.10.10’> -w /usr/share/dirb/wordlist/big.txt

**#Fuzzing a specific parameter**&#x20;

Example target : <http://192.168.101.143/search1.php?id=about.php>

Fuzzing:

wfuzz -c -w /usr/share/wordlists/dirb/big.txt -u <http://192.168.101.143/search1.php?FUZZ=about.php> --hw 288

\--hw will parse through false positives

**#Attacking a login page**

sudo wfuzz -c -w pass.txt -d “username=redcliff\&pass=FUZZ” --hc 200 10.10.10.10/login.php

**#Looking for common directories**

wfuzz -w wordlist/general/common.txt <http://testphp.vulnweb.com/FUZ>

**#Looking for common Files**

wfuzz -w wordlist/general/common.txt <http://testphp.vulnweb.com/FUZZ.php>

**#Fuzzing URLs**

You often want to fuzz some sort of data in the URL’s query string, this can be achieved by specifying the FUZZ keyword in the URL after a question mark

wfuzz -z range,0-10 --hl 97 <http://testphp.vulnweb.com/listproducts.php?cat=FUZZ>

**#Fuzz a post request If you want to fuzz some form-encoded data like an HTML form will do, simply pass a -d command line argument**

wfuzz -z file,wordlist/others/common\_pass.txt -d "uname=FUZZ\&pass=FUZZ" --hc 302 <http://testphp.vulnweb.com/userinfo.php>


---

# 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://davidtancredi.gitbook.io/pentesting-notes/r3dcl1ff/webapp-pentest/fuzzing/wfuzz.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.
