Post

ffuf - Fuzz Faster U Fool

ffuf - Fuzz Faster U Fool

ffuf_run_logo

ffuf tool which use to do fuzzing/brute force attacks

1
2
3
4
5
6
7
8
9
10
11
12
13
14
Usage: ffuf [flags]

Flags:
  -w             Wordlist file path
  -u             Target URL
  -H             Custom header (can be used multiple times)
  -X             HTTP method (default: GET)
  -r             Follow redirects
  -t             Number of concurrent threads (default: 40)
  -p             Proxy URL
  -c             Custom match string (can be used multiple times)
  -exclude-dirs  Comma-separated list of directories to exclude
  -mc            Maximum number of matches to output
  -v             Verbose output

Examples:

  1. Basic usage:
    1
    
    ffuf -w wordlist.txt -u http://example.com/FUZZ
    
  2. Add custom header:
    1
    
    ffuf -w wordlist.txt -u http://example.com/FUZZ -H "Authorization: Bearer <token>"
    
  3. Use POST method:
    1
    
    ffuf -w wordlist.txt -u http://example.com/api -X POST -d "param1=value1&param2=value2"
    
  4. Finding subdomain:
    1
    
    ffuf -u https://FUZZ.example.com -w wordlist.txt -mc 200,301,302,403
    
  5. Follow redirects:
    1
    
    ffuf -w wordlist.txt -u http://example.com/FUZZ -r
    
  6. Use a proxy:
    1
    
    ffuf -w wordlist.txt -u http://example.com/FUZZ -p http://127.0.0.1:8080
    
  7. Exclude directories:
    1
    
    ffuf -w wordlist.txt -u http://example.com/FUZZ -exclude-dirs "admin,backup,test"
    
  8. Use custom match string:
    1
    
    ffuf -w wordlist.txt -u http://example.com/FUZZ -c "Password incorrect"
    
  9. Number of threads:
    1
    
    ffuf -w wordlist.txt -u http://example.com/FUZZ -t 50
    

Common List for SecLists

https://github.com/danielmiessler/SecLists

ListUsage
SecLists/Discovery/Web-Content/directory-list-2.3-small.txtDirectory/Page Wordlist
SecLists/Discovery/Web-Content/web-extensions.txtExtensions Wordlist
SecLists/Discovery/DNS/subdomains-top1million-5000.txtDomain Wordlist
SecLists/Discovery/Web-Content/burp-parameter-names.txtparamter Wordlist
This post is licensed under CC BY 4.0 by the author.