-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,31 @@ | ||
# Wfuzz - The Web Fuzzer | ||
|
||
## What is this? | ||
|
||
Wfuzz is a tool designed to fuzz web applications, it's very flexible, it supports: | ||
|
||
- Recursion (when doing directory discovery) | ||
- Post data bruteforcing | ||
- Header bruteforcing | ||
- Output to HTML (easy for just clicking the links and checking the page, even with postdata!) | ||
- Colored output | ||
- Hide results by return code, word numbers, line numbers, etc. | ||
- Url encoding | ||
- Cookies | ||
- Multithreading | ||
- Proxy support | ||
- All parameter fuzzing | ||
- etc | ||
Wfuzz has been created to facilitate the task in web applications assessments and it is based on a simple concept: it replaces any reference to the FUZZ keyword by the value of a given payload. | ||
|
||
It was created to facilitate the task in web applications assessments, it's a tool by pentesters for pentesters ;) | ||
A payload in Wfuzz is a source of data. | ||
|
||
This simple concept allows any input to be injected in any field of an HTTP request, allowing to perform complex web security attacks in different web application components such as: parameters, authentication, forms, directories/files, headers, etc. | ||
|
||
## How does it works? | ||
Wfuzz is more than a web content scanner: | ||
|
||
The tool is based on dictionaries or ranges, then you choose where you want to bruteforce just by replacing the value by the word FUZZ. | ||
* Wfuzz could help you to secure your web applications by finding and exploiting web application vulnerabilities. Wfuzz’s web application vulnerability scanner is supported by plugins. | ||
|
||
For further information check the wiki at https://github.com/xmendez/wfuzz/wiki. | ||
* Wfuzz is a completely modular framework and makes it easy for even the newest of Python developers to contribute. Building plugins is simple and takes little more than a few minutes. | ||
|
||
Or check the README file for usage examples. | ||
* Wfuzz exposes a simple language interface to the previous HTTP requests/responses performed using Wfuzz or other tools, such as Burp. This allows you to perform manual and semi-automatic tests with full context and understanding of your actions, without relying on a web application scanner underlying implementation. | ||
It was created to facilitate the task in web applications assessments, it's a tool by pentesters for pentesters ;) | ||
|
||
## Installation | ||
|
||
## Download | ||
To install WFuzz, simply use pip: | ||
|
||
Check github releases. Latest: | ||
``` | ||
pip install wfuzz | ||
``` | ||
## Documentation | ||
|
||
Documentation is available at http://wfuzz.readthedocs.io | ||
|
||
## Download | ||
|
||
- https://github.com/xmendez/wfuzz/releases/latest | ||
Check github releases. Latest is available at https://github.com/xmendez/wfuzz/releases/latest |