1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 18:06:00 +02:00

feroxbuster: add page (#9544)

This commit is contained in:
n8x0b7T 2022-11-27 09:35:36 -05:00 committed by GitHub
parent c21edd799d
commit 2772f9750f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: <https://epi052.github.io/feroxbuster-docs/docs/>.
- 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}}`