mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-26 16:53:04 +00:00
Update cheatsheets
This commit is contained in:
10
tldr/ffuf
10
tldr/ffuf
@@ -13,7 +13,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
`ffuf -c -w {{path/to/wordlist.txt}} -u {{http://target/FUZZ}}`
|
||||
|
||||
- Enumerate subdomains by changing the position of the keyword:
|
||||
- Enumerate webservers of subdomains by changing the position of the keyword:
|
||||
|
||||
`ffuf -w {{path/to/subdomains.txt}} -u {{http://FUZZ.target.com}}`
|
||||
|
||||
@@ -28,3 +28,11 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
- Fuzz with specified HTTP method and [d]ata, while [f]iltering out comma separated status [c]odes:
|
||||
|
||||
`ffuf -w {{path/to/postdata.txt}} -X {{POST}} -d "{{username=admin\&password=FUZZ}}" -u {{http://target/login.php}} -fc {{401,403}}`
|
||||
|
||||
- Fuzz multiple positions with multiple wordlists using different modes:
|
||||
|
||||
`ffuf -w {{path/to/keys:KEY}} -w {{path/to/values:VALUE}} -mode {{pitchfork|clusterbomb}} -u {{http://target.com/id?KEY=VALUE}}`
|
||||
|
||||
- Proxy requests through a HTTP MITM pro[x]y (such as Burp Suite or `mitmproxy`):
|
||||
|
||||
`ffuf -w {{path/to/wordlist}} -x {{http://127.0.0.1:8080}} -u {{http://target.com/FUZZ}}`
|
||||
|
||||
Reference in New Issue
Block a user