From 2772f9750f5ff2de5054dcc57f8fbdf001f1a1c4 Mon Sep 17 00:00:00 2001 From: n8x0b7T Date: Sun, 27 Nov 2022 09:35:36 -0500 Subject: [PATCH] feroxbuster: add page (#9544) --- pages/common/feroxbuster.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/feroxbuster.md diff --git a/pages/common/feroxbuster.md b/pages/common/feroxbuster.md new file mode 100644 index 000000000..1c2a65658 --- /dev/null +++ b/pages/common/feroxbuster.md @@ -0,0 +1,21 @@ +# feroxbuster + +> Simple, fast, recursive content discovery tool written in Rust. +> Used to brute-force hidden paths on web servers and more. +> More information: . + +- Discover specific directories and files that match in the wordlist with extensions and 100 threads and a random user-agent: + +`feroxbuster --url "{{https://example.com}}" --wordlist {{path/to/file}} --threads {{100}} --extensions "{{php,txt}}" --random-agent` + +- Enumerate directories without recursion through a specific proxy: + +`feroxbuster --url "{{https://example.com}}" --wordlist {{path/to/file}} --no-recursion --proxy "{{http://127.0.0.1:8080}}"` + +- Find links in webpages: + +`feroxbuster --url "{{https://example.com}}" --extract-links` + +- Filter by a specific status code and a number of chars: + +`feroxbuster --url "{{https://example.com}}" --filter-status {{301}} --filter-size {{4092}}`