SkillAgentSearch skills...

Feroxbuster

A fast, simple, recursive content discovery tool written in Rust.

Install / Use

/learn @epi052/Feroxbuster
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

⚠️ Security Notice – Domain Impersonation

The domain feroxbuster.com is NOT affiliated with this project, its maintainers, or any official feroxbuster releases.

Official feroxbuster downloads are distributed ONLY through:

We do not distribute software from feroxbuster.com, and we cannot vouch for the authenticity or safety of files hosted there.
If you downloaded feroxbuster from any other domain, we strongly recommend deleting it and reinstalling from an official source.

<h1 align="center"> <br> <a href="https://github.com/epi052/feroxbuster"><img src="img/logo/default-cropped.png" alt="feroxbuster"></a> <br> </h1> <h4 align="center">A simple, fast, recursive content discovery tool written in Rust</h4> <p align="center"> <a href="https://github.com/epi052/feroxbuster/actions?query=workflow%3A%22CI+Pipeline%22"> <img src="https://img.shields.io/github/actions/workflow/status/epi052/feroxbuster/.github/workflows/check.yml?branch=main&logo=github"> </a> <a href="https://github.com/epi052/feroxbuster/releases"> <img src="https://img.shields.io/github/downloads/epi052/feroxbuster/total?label=downloads&logo=github&color=inactive" alt="github downloads"> </a> <a href="https://github.com/epi052/feroxbuster/commits/master"> <img src="https://img.shields.io/github/last-commit/epi052/feroxbuster?logo=github"> </a> <a href="https://crates.io/crates/feroxbuster"> <img src="https://img.shields.io/crates/v/feroxbuster?color=blue&label=version&logo=rust"> </a> <a href="https://crates.io/crates/feroxbuster"> <img src="https://img.shields.io/crates/d/feroxbuster?label=downloads&logo=rust&color=inactive"> </a> <a href="https://codecov.io/gh/epi052/feroxbuster"> <img src="https://codecov.io/gh/epi052/feroxbuster/branch/master/graph/badge.svg" /> </a> <!-- <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section [![All Contributors](https://img.shields.io/badge/all_contributors-15-orange.svg?style=flat-square)](#contributors-) <!-- ALL-CONTRIBUTORS-BADGE:END --> <a href="https://github.com/epi052/feroxbuster/graphs/contributors"> <img src="https://img.shields.io/badge/all_contributors-31-orange.svg" /> </a> </p>

demo

<p align="center"> 🦀 <a href="https://github.com/epi052/feroxbuster/releases">Releases</a> ✨ <a href="https://epi052.github.io/feroxbuster-docs/examples/auto-tune/">Example Usage</a> ✨ <a href="https://github.com/epi052/feroxbuster/blob/main/CONTRIBUTING.md">Contributing</a> ✨ <a href="https://epi052.github.io/feroxbuster-docs/overview">Documentation</a> 🦀 </p>
<h1><p align="center">✨🎉👉 <a href="https://epi052.github.io/feroxbuster-docs/">NEW DOCUMENTATION SITE</a> 👈🎉✨</p></h1>

🚀 Documentation has moved 🚀

Instead of having a 1300 line README.md (sorry...), feroxbuster's documentation has moved to GitHub Pages. The move to hosting documentation on Pages should make it a LOT easier to find the information you're looking for, whatever that may be. Please check it out for anything you need beyond a quick-start. The new documentation can be found here.

😕 What the heck is a ferox anyway?

Ferox is short for Ferric Oxide. Ferric Oxide, simply put, is rust. The name rustbuster was taken, so I decided on a variation. 🤷

🤔 What's it do tho?

feroxbuster is a tool designed to perform Forced Browsing.

Forced browsing is an attack where the aim is to enumerate and access resources that are not referenced by the web application, but are still accessible by an attacker.

feroxbuster uses brute force combined with a wordlist to search for unlinked content in target directories. These resources may store sensitive information about web applications and operational systems, such as source code, credentials, internal network addressing, etc...

This attack is also known as Predictable Resource Location, File Enumeration, Directory Enumeration, and Resource Enumeration.

⏳ Quick Start

This section will cover the minimum amount of information to get up and running with feroxbuster. Please refer the the documentation, as it's much more comprehensive.

💿 Installation

There are quite a few other installation methods, but these snippets should cover the majority of users.

Kali

If you're using kali, this is the preferred install method. Installing from the repos adds a ferox-config.toml in /etc/feroxbuster/, adds command completion for bash, fish, and zsh, includes a man page entry, and installs feroxbuster itself.

sudo apt update && sudo apt install -y feroxbuster

Linux (32 and 64-bit) & MacOS

Install to a particular directory

curl -sL https://raw.githubusercontent.com/epi052/feroxbuster/main/install-nix.sh | bash -s $HOME/.local/bin

Install to current working directory

curl -sL https://raw.githubusercontent.com/epi052/feroxbuster/main/install-nix.sh | bash

MacOS via Homebrew

brew install feroxbuster

Windows x86_64

Invoke-WebRequest https://github.com/epi052/feroxbuster/releases/latest/download/x86_64-windows-feroxbuster.exe.zip -OutFile feroxbuster.zip
Expand-Archive .\feroxbuster.zip
.\feroxbuster\feroxbuster.exe -V

Windows via Winget

winget install epi052.feroxbuster

Windows via Chocolatey

choco install feroxbuster

All others

Please refer the the documentation.

Updating feroxbuster (new in v2.9.1)

./feroxbuster --update

🧰 Example Usage

Here are a few brief examples to get you started. Please note, feroxbuster can do a lot more than what's listed below. As a result, there are many more examples, with demonstration gifs that highlight specific features, in the documentation.

Multiple Values

Options that take multiple values are very flexible. Consider the following ways of specifying extensions:

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

The command above adds .pdf, .js, .html, .php, .txt, .json, and .docx to each url

All of the methods above (multiple flags, space separated, comma separated, etc...) are valid and interchangeable. The same goes for urls, headers, status codes, queries, and size filters.

Include Headers

./feroxbuster -u http://127.1 -H Accept:application/json "Authorization: Bearer {token}"

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

./feroxbuster -u http://[::1] --no-recursion -vv

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

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

Proxy traffic through Burp

./feroxbuster -u http://127.1 --insecure --proxy http://127.0.0.1:8080

Proxy traffic through a SOCKS proxy (including DNS lookups)

./feroxbuster -u http://127.1 --proxy socks5h://127.0.0.1:9050

Pass auth token via query parameter

./feroxbuster -u http://127.1 --query token=0123456789ABCDEF

Set the Content-Type of the body automatically with --data-json --data-urlencoded

./feroxbuster -u http://127.1 --data-json '{"some": "payload"}'
./feroxbuster -u http://127.1 --data-json @payload.json
./feroxbuster -u http://127.1 --data-urlencoded 'some=payload'
./feroxbuster -u http://127.1 --data-urlencoded @file.payload

🚀 Documentation has moved 🚀

For realsies, there used to be over 1300 lines in this README, but it's all been moved to the new documentation site. Go check it out!

<h1><p align="center">✨🎉👉 <a href="https://epi052.github.io/feroxbuster-docs/overview">DOCUMENTATION</a> 👈🎉✨</p></h1>

Contributors ✨

Thanks goes to these wonderful people (emoji key):

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> <!-- prettier-ignore-start --> <!-- markdownlint-disable --> <table> <tbody> <tr> <td align="center" valign="top" width="14.28%"><a href="https://io.fi"><img src="https://avatars.githubusercontent.com/u/5235109?v=4?s=100" width="100px;" alt="Joona Hoikkala"/><br /><sub><b>Joona Hoikkala</b></sub></a><br /><a href="https://github.com/epi052/feroxbuster/commits?author=joohoi" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/jsav0"><img src="https://avatars.githubusercontent.com/u/20546041?v=4?s=100" width="100px;" alt="J Savage"/><br /><sub><b>J Savage</b></sub></a><br /><a href="#infra-jsav0" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/epi052/feroxbuster/commits?author=jsav0" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="http://www.tgotwig.dev"><img src="https://avatars.githubusercontent.com/u/30773779?v=4?s=100" width="100px;" alt="Thomas Gotwig"/><br /><sub><b>Thomas Gotwig</b></sub></a><br /><a href="#infra-TGotwig" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/epi052/feroxbuster/commits?author=TGotwig" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/spikec
View on GitHub
GitHub Stars7.6k
CategoryDevelopment
Updated3h ago
Forks609

Languages

Rust

Security Score

100/100

Audited on Mar 26, 2026

No findings