Web Application
Feroxbuster is a fast, recursive content discovery tool written in Rust. It is designed to perform forced browsing to find hidden directories and files on web servers using high-performance parallel execution.
sudo apt install feroxbuster
feroxbuster -u <url>
Feroxbuster is a fast, recursive content discovery tool written in Rust. It performs forced browsing to find hidden directories and files on web servers using high-performance parallel execution.
Unlike other directory scanners, Feroxbuster automatically recurses into discovered directories, mapping deep application structures without manual intervention. Its auto-calibration adjusts request rates based on server responsiveness.
Feroxbuster's combination of speed, automatic recursion, and ease of use has made it a favorite for both penetration testers and bug bounty hunters.
feroxbuster -u http://192.168.1.1Basic scan - Launch a standard recursive directory discovery scan using the default configurationferoxbuster -u http://192.168.1.1 -w /usr/share/wordlists/dirb/common.txtCustom wordlist - Run the recursive discovery using a specific targeted path dictionaryferoxbuster -u http://192.168.1.1 -x php,html,txtTarget extensions - Scan for directories while explicitly checking for files matching these extensionsferoxbuster -u http://192.168.1.1 --depth 3Set recursion depth - Limit how many subdirectories deep the automatic scanner will traverseferoxbuster -u http://192.168.1.1 -t 50Adjust thread count - Increase or decrease parallel request execution speedferoxbuster -u http://192.168.1.1 --filter-status 404Filter status codes - Remove unhelpful HTTP 404 responses from clogging the output streamferoxbuster -u http://target.comBasic scanferoxbuster -u http://target.com -w /usr/share/wordlists/dirb/common.txtCustom wordlistferoxbuster -u http://target.com -x php,html,txtWith extensionsferoxbuster -u http://target.com --depth 3Recursive depthferoxbuster -u http://target.com -t 50Set threadsferoxbuster -u http://target.com --filter-status 404Filter status codesferoxbuster -u http://target.com -x php,html,txt -rFollow redirects while probing for common file extensionsferoxbuster -u http://target.com -H 'Authorization: Bearer TOKEN'Send a custom header (e.g. auth token) with every requestferoxbuster -u http://target.com -C 404,403 -s 200,301Filter out 404/403 and only report 200/301 responsesAutomatically discover and recurse into hidden directories to map deep application structures.
High-speed directory brute forcing using Rust-based parallel execution.
Map entire web application directory trees with automatic recursion.
Discover hidden endpoints, admin panels, and backup files in bug bounty programs.
Scan for specific file types like .php, .html, .txt alongside directories.
Scan large web applications with auto-calibration and recursive depth control.
Shows status codes, content length, and discovered URLs.
This tool is designed for authorized security testing, educational purposes, and legitimate network administration only. Unauthorized access to computer systems is illegal.