FFUF

About

Fuzz Faster U Fool. A fast web fuzzer written in Go

Github

Daniel Miessler primer on ffuf

Installing

  • Download prebuilt binary from https://github.com/ffuf/ffuf/releases/latest

  • If GO Compiler is installed

go install github.com/ffuf/ffuf/v2@latest
  • From source

git clone https://github.com/ffuf/ffuf ; cd ffuf ; go get ; go build

Usage

ffuf -recursion -mc all -ac -c -e (X) -w WORDLIST
ffuf -recursion -mc all -ac -c -e .htm,.shtml,.php,.html,.js,.txt,.zip,.bak,.asp,.aspx,.xml -w WORDLIST -u https://TARGET/FUZZ -fc 400,401,403,404,406,500,502 > OutFile.txt
  • Password Guessing with POST request

Last updated