Security & Pentesting
โ
7.6k
Rust
epi052/feroxbuster
7.6k
Stars
606
Forks
36
Issues
Rust
Language
Feroxbuster is a fast, simple, recursive content discovery tool written in Rust. Designed for web application penetration testing, it brute-forces directories and files on web servers using wordlists. Features recursive scanning, multiple filter options, proxy support, automatic calibration, and resume capability. Significantly faster than alternatives like gobuster and dirbuster thanks to async Rust. Essential tool for bug bounty hunters and penetration testers doing web enumeration.
View on GitHub
git clone https://github.com/epi052/feroxbuster.git
Quick Start Example
bash
# Install
cargo install feroxbuster
# Basic directory brute-force
feroxbuster -u https://target.com
# With wordlist and extensions
feroxbuster -u https://target.com \
-w /usr/share/wordlists/common.txt \
-x php,html,js \
--depth 3 \
--threads 50