GitBook: [master] one page modified

This commit is contained in:
CPol 2020-12-01 15:55:38 +00:00 committed by gitbook-bot
parent eb84177d9b
commit af1cb68098
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF

View File

@ -71,7 +71,7 @@ wfuzz.py -c -z file,users.txt -z file,pass.txt --sc 200 -d "name=FUZZ&password=F
#### **GET, 2 lists, filter string \(show\), proxy, cookies** #### **GET, 2 lists, filter string \(show\), proxy, cookies**
```text ```bash
wfuzz -c -w users.txt -w pass.txt --ss "Welcome " -p 127.0.0.1:8080:HTTP -b "PHPSESSIONID=1234567890abcdef;customcookie=hey" "http://example.com/index.php?username=FUZZ&password=FUZ2Z&action=sign+in" wfuzz -c -w users.txt -w pass.txt --ss "Welcome " -p 127.0.0.1:8080:HTTP -b "PHPSESSIONID=1234567890abcdef;customcookie=hey" "http://example.com/index.php?username=FUZZ&password=FUZ2Z&action=sign+in"
``` ```
@ -83,6 +83,12 @@ wfuzz -c -w users.txt -w pass.txt --ss "Welcome " -p 127.0.0.1:8080:HTTP -b "PHP
wfuzz -c -w /tmp/tmp/params.txt --hc 404 https://domain.com/api/FUZZ wfuzz -c -w /tmp/tmp/params.txt --hc 404 https://domain.com/api/FUZZ
``` ```
### Path Parameters BF
```bash
wfuzz -c -w ~/git/Arjun/db/params.txt --hw 11 'http://example.com/path%3BFUZZ=FUZZ'
```
### Header Authentication ### Header Authentication
#### **Basic, 2 lists, filter string \(show\), proxy** #### **Basic, 2 lists, filter string \(show\), proxy**
@ -135,7 +141,7 @@ $ wfuzz -z list,GET-HEAD-POST-TRACE-OPTIONS -X FUZZ http://testphp.vulnweb.com/
### Directory & Files Bruteforce ### Directory & Files Bruteforce
```text ```bash
#Filter by whitelisting codes #Filter by whitelisting codes
wfuzz -c -z file,/usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt --sc 200,202,204,301,302,307,403 http://example.com/uploads/FUZZ wfuzz -c -z file,/usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt --sc 200,202,204,301,302,307,403 http://example.com/uploads/FUZZ
``` ```