mirror of
https://github.com/carlospolop/hacktricks
synced 2025-02-16 14:08:26 +00:00
GitBook: [master] one page modified
This commit is contained in:
parent
fd0beacb4d
commit
9a30f4452c
1 changed files with 7 additions and 7 deletions
|
@ -93,13 +93,13 @@ wfuzz -c -w ~/git/Arjun/db/params.txt --hw 11 'http://example.com/path%3BFUZZ=FU
|
|||
|
||||
#### **Basic, 2 lists, filter string \(show\), proxy**
|
||||
|
||||
```text
|
||||
```bash
|
||||
wfuzz -c -w users.txt -w pass.txt -p 127.0.0.1:8080:HTTP --ss "Welcome" --basic FUZZ:FUZ2Z "http://example.com/index.php"
|
||||
```
|
||||
|
||||
#### **NTLM, 2 lists, filter string \(show\), proxy**
|
||||
|
||||
```text
|
||||
```bash
|
||||
wfuzz -c -w users.txt -w pass.txt -p 127.0.0.1:8080:HTTP --ss "Welcome" --ntlm 'domain\FUZZ:FUZ2Z' "http://example.com/index.php"
|
||||
```
|
||||
|
||||
|
@ -107,19 +107,19 @@ wfuzz -c -w users.txt -w pass.txt -p 127.0.0.1:8080:HTTP --ss "Welcome" --ntlm '
|
|||
|
||||
#### **Cookie, filter code \(show\), proxy**
|
||||
|
||||
```text
|
||||
```bash
|
||||
wfuzz -c -w users.txt -p 127.0.0.1:8080:HTTP --ss "Welcome " -H "Cookie:id=1312321&user=FUZZ" "http://example.com/index.php"
|
||||
```
|
||||
|
||||
#### **User-Agent, filter code \(hide\), proxy**
|
||||
|
||||
```text
|
||||
```bash
|
||||
wfuzz -c -w user-agents.txt -p 127.0.0.1:8080:HTTP --ss "Welcome " -H "User-Agent: FUZZ" "http://example.com/index.php"
|
||||
```
|
||||
|
||||
#### **Host**
|
||||
|
||||
```text
|
||||
```bash
|
||||
wfuzz -c -w /usr/share/wordlists/SecLists/Discovery/DNS/subdomains-
|
||||
top1million-20000.txt --hc 400,404,403 -H "Host: FUZZ.example.com" -u
|
||||
http://example.com -t 100
|
||||
|
@ -129,13 +129,13 @@ http://example.com -t 100
|
|||
|
||||
#### **Using file**
|
||||
|
||||
```text
|
||||
```bash
|
||||
wfuzz -c -w methods.txt -p 127.0.0.1:8080:HTTP --sc 200 -X FUZZ "http://example.com/index.php"
|
||||
```
|
||||
|
||||
#### **Using inline list**
|
||||
|
||||
```text
|
||||
```bash
|
||||
$ wfuzz -z list,GET-HEAD-POST-TRACE-OPTIONS -X FUZZ http://testphp.vulnweb.com/
|
||||
```
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue