Feroxbuster
Fast content discovery tool written in Rust for directory and file brute-forcing
Recon & OSINT11 commands
#content#discovery#rust#bruteforce#directory
Installation
1Install via cargo
2Download from releases
3Verify installation
# Using Cargo
cargo install feroxbuster
# Download from releases
# Visit https://github.com/epi052/feroxbuster/releases
# Verify
feroxbuster --versionBasic Usage
Fast recursive content discovery with wildcard detection and filtering
# Basic directory scan
feroxbuster -u https://example.com -w wordlist.txt
# Recursive scan with depth
feroxbuster -u https://example.com -w wordlist.txt -d 3
# Filter by status code
feroxbuster -u https://example.com -w wordlist.txt --filter-status 404
# Scan with extensions
feroxbuster -u https://example.com -w wordlist.txt -x php,asp,html
# Rate limiting
feroxbuster -u https://example.com -w wordlist.txt --rate-limit 60
# Thread count
feroxbuster -u https://example.com -w wordlist.txt -t 50
# Quiet mode with JSON output
feroxbuster -u https://example.com -w wordlist.txt --json -q
# Wildcard detection
feroxbuster -u https://example.com -w wordlist.txt --auto-tuneCommand Reference
11 commands
1Target URL
-u2Wordlist file
-w3Recursion depth
-d4File extensions to scan
-x5Number of threads
-t6Filter response status codes
--filter-status7Filter response sizes
--filter-size8Requests per second
--rate-limit9JSON output
--json10Auto-detect and handle wildcards
--auto-tune11Quiet mode
-qWhen to Use
1
Directory and file brute-forcing on web applications2
Discovering hidden endpoints and admin panels3
Recursive content discovery with depth control4
Filtering out false positives from wildcard responses5
API endpoint discovery with extension filteringNotes & Tips
1
Written in Rust for exceptional speed2
Automatic wildcard detection reduces false positives3
Supports recursive scanning with configurable depth4
JSON output for integration with other toolsCommon Errors & Solutions
Too many false positives
Use --auto-tune for wildcard detection or filter by response size
Rate limited by server
Reduce rate-limit and thread count with --rate-limit and -t