Feroxbuster

Multiple values

feroxbuster -u http://geeksforgeeks.org -x pdf -x js,html -x php txt json,docx

Include Header

feroxbuster -u http://geeksforgeeks.org -H Accept:application/json “Authorization: Gaurav”

IPv6, non-recursive scan with INFO-level logging enabled

feroxbuster -u http://geeksforgeeks.org –no-recursion -vv

Read URLs from STDIN; pipe only resulting URLs out to another tool

cat targets.txt | feroxbuster –stdin –silent -s 200 301 302 –redirects -x js fff -s 200 -o js-files


targets.txt
https://alibabu.com
ggole.com

Proxy traffic through Burp

feroxbuster -u http://geeksforgeeks.org –insecure –proxy http://127.0.0.1:80

Proxy traffic through a SOCKS proxy (including DNS lookups)

feroxbuster -u http://geeksforgeeks.org –proxy socks5h://127.0.0.1:80

Pass auth token via a query parameter

feroxbuster -u http://geeksforgeeks.org –query token=0123456789ABCDEF

Last updated