Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattjegan/wtfuzz
A pip-installable tool used for checking the existence of different types of web resources
https://github.com/mattjegan/wtfuzz
cli fuzzing python security security-scanner security-tools
Last synced: 3 months ago
JSON representation
A pip-installable tool used for checking the existence of different types of web resources
- Host: GitHub
- URL: https://github.com/mattjegan/wtfuzz
- Owner: mattjegan
- License: mit
- Created: 2017-03-24T11:28:04.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-02-01T05:23:37.000Z (almost 6 years ago)
- Last Synced: 2024-07-08T00:48:07.337Z (7 months ago)
- Topics: cli, fuzzing, python, security, security-scanner, security-tools
- Language: Python
- Homepage:
- Size: 797 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacktoberfest - wtfuzz
README
# wtfuzz - What The Fuzz
[![PyPI version](https://badge.fury.io/py/wtfuzz.svg)](https://badge.fury.io/py/wtfuzz)Wtfuzz is a pip-installable tool used for checking the existance of different types of web resources including webpages, files, api endpoints and more.
## Installation
Requires Python 3.5+
```
pip install wtfuzz
```## Usage
```
wtfuzz http://your-url-here.com myList.txt404 : http://your-url-here.com/.bash_history
404 : http://your-url-here.com/.bashrc
404 : http://your-url-here.com/.cache
404 : http://your-url-here.com/.config
404 : http://your-url-here.com/.cvs
200 : http://your-url-here.com/.git/HEAD
200 : http://your-url-here.com/index.php
200 : http://your-url-here.com/wp-admin.php
```### With query parameters
```
contents of query_params.csv:
a,b,c
1,2,3
4,5,6wtfuzz http://your-url-here.com?a&b&c myList.txt -q query_params.csv
404 : http://your-url-here.com/.bash_history?a=1b=2c=3
404 : http://your-url-here.com/.bashrc?a=1b=2c=3
404 : http://your-url-here.com/.cache?a=1b=2c=3
404 : http://your-url-here.com/.config?a=1b=2c=3
404 : http://your-url-here.com/.cvs?a=1b=2c=3
200 : http://your-url-here.com/.git/HEAD?a=1b=2c=3
200 : http://your-url-here.com/index.php?a=1b=2c=3
200 : http://your-url-here.com/wp-admin.php?a=1b=2c=3
...```
## Options
```
usage: wtfuzz [-h] [-w wait_time] [-n num_requests] [-t num_threads]
[-o output_file] [--only http_status]
root_url list_fileA CLI tool for finding web resources
positional arguments:
root_url the url you want to start the search from
list_file an optional list of resources to checkoptional arguments:
-h, --help show this help message and exit
-w wait_time an optional time to wait between the number of requests
given by the -n flag. Note: this is per thread.
-n num_requests an optional number of requests to make before waiting
for the time specified by the -w flag. Note: this is per
thread.
-t num_threads an optional number of threads to use to send requests.
-o output_file an optional file to log output to.
-m http_method http method to use for requests
-c http_status color customize what color a given http status code will
display as. Note: this parameter can be specified
multiple times. Available Colors:
[red,green,yellow,blue,black,magenta,cyan,white]
-b http_body http body to use for requests
--only http_status only show requests that return http_status
```## Contributing
Anyone is welcome to contribute, just head over to [the issues page](https://github.com/mattjegan/wtfuzz/issues) and find an issue you'd like to work on. Check out the discussion and if it seems cool for you to begin working on something, fork the repository, make your changes, and then make a pull request back into this master branch. When making your changes, make sure to add yourself to the AUTHORS file.
### Setup
1. Fork the repository
2. Clone your fork: `git clone https://github.com//wtfuzz`
3. Go to the project directory: `cd wtfuzz`
4. Install the required packages: `pip3 install -r requirements.txt`
5. Run the code: `python3 wtfuzz/wtfuzz.py http://your-url-here.com myList.txt`