No description
Find a file
Joona Hoikkala 36a0a103e7
Colors
2018-11-09 15:21:23 +02:00
pkg Colors 2018-11-09 15:21:23 +02:00
.goreleaser.yml Initial commit, v0.1 2018-11-08 11:26:32 +02:00
LICENSE Add MIT license 2018-11-08 15:59:33 +02:00
main.go Colors 2018-11-09 15:21:23 +02:00
README.md Regex filter not yet implemented 2018-11-08 11:29:26 +02:00

ffuf - Fuzz Faster U Fool

A fast web fuzzer written in Go, allows fuzzing of URL and header values.

Usage

Usage of ./ffuf:
  -H value
    	Header name and value, separated by colon. Multiple -H flags are accepted.
  -X string
    	HTTP method to use. (default "GET")
  -fc string
    	Filter HTTP status codes from response
  -fs string
    	Filter HTTP response size
  -k	Skip TLS identity verification (insecure)
  -mc string
    	Match HTTP status codes from respose (default "200,204,301,302,307")
  -ms string
    	Match HTTP response size
  -s	Do not print additional information (silent mode)
  -t int
    	Number of concurrent threads. (default 20)
  -u string
    	Target URL
  -w string
    	Wordlist path

eg. ffuf -u https://example.org/FUZZ -w /path/to/wordlist

Installation

Either download a prebuilt binary from Releases page or install Go 1.9 or newer. and build the project with go get && go build