mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-22 04:33:28 +00:00
commit
f7565fda39
1 changed files with 5 additions and 5 deletions
|
@ -58,13 +58,13 @@ wfuzz -e encoders #Prints the available encoders
|
|||
#Examples: urlencode, md5, base64, hexlify, uri_hex, doble urlencode
|
||||
```
|
||||
|
||||
In order to use a encoder, you have to indicate it in the **"-w"** or **"-z"** option.
|
||||
In order to use an encoder, you have to indicate it in the **"-w"** or **"-z"** option.
|
||||
|
||||
Examples:
|
||||
|
||||
```bash
|
||||
-z file,/path/to/file,md5 #Will use a list inside the file, and will trnasform each value into its md5 hash before sending it
|
||||
-w /path/to/file,base64 #Will use a list, and transforms to base64
|
||||
-z file,/path/to/file,md5 #Will use a list inside the file, and will transform each value into its md5 hash before sending it
|
||||
-w /path/to/file,base64 #Will use a list, and transform to base64
|
||||
-z list,each-element-here,hexlify #Inline list and to hex before sending values
|
||||
```
|
||||
|
||||
|
@ -79,7 +79,7 @@ wfuzz -c -w users.txt --hs "Login name" -d "name=FUZZ&password=FUZZ&autologin=1&
|
|||
#Here we have filtered by line
|
||||
```
|
||||
|
||||
#### **POST, 2 lists, filder code (show)**
|
||||
#### **POST, 2 lists, filter code (show)**
|
||||
|
||||
```bash
|
||||
wfuzz.py -c -z file,users.txt -z file,pass.txt --sc 200 -d "name=FUZZ&password=FUZ2Z&autologin=1&enter=Sign+in" http://zipper.htb/zabbix/index.php
|
||||
|
@ -92,7 +92,7 @@ wfuzz.py -c -z file,users.txt -z file,pass.txt --sc 200 -d "name=FUZZ&password=F
|
|||
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"
|
||||
```
|
||||
|
||||
### Bruteforce Dicrectory/RESTful bruteforce
|
||||
### Bruteforce Directory/RESTful bruteforce
|
||||
|
||||
[Arjun parameters wordlist](https://raw.githubusercontent.com/s0md3v/Arjun/master/arjun/db/params.txt)
|
||||
|
||||
|
|
Loading…
Reference in a new issue