From d59d955aed1c1db48d4f8dd211fccb1b8e970e98 Mon Sep 17 00:00:00 2001 From: cstef Date: Fri, 21 Jun 2024 15:27:36 +0200 Subject: [PATCH] docs: add FAQ + refactor sidebar --- docs/pages/_meta.json | 11 +++++++++- docs/pages/faq.mdx | 20 +++++++++++++++++++ .../{response-filters.mdx => responses.mdx} | 0 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 docs/pages/faq.mdx rename docs/pages/{response-filters.mdx => responses.mdx} (100%) diff --git a/docs/pages/_meta.json b/docs/pages/_meta.json index 5b97a85..e3768fa 100644 --- a/docs/pages/_meta.json +++ b/docs/pages/_meta.json @@ -1,3 +1,12 @@ { - "index": "Quick Start" + "index": "Quick Start", + "modes": "Modes", + "responses": "Responses", + "wordlists": "Wordlists", + "configuration": "Configuration", + "interactive": "Interactive Mode", + "scripting": "Scripting", + "options": "Options", + "completions": "Completions", + "faq": "FAQ" } diff --git a/docs/pages/faq.mdx b/docs/pages/faq.mdx new file mode 100644 index 0000000..0543040 --- /dev/null +++ b/docs/pages/faq.mdx @@ -0,0 +1,20 @@ +## FAQ + +### Where can I find wordlists? + +- [SecLists](https://github.com/danielmiessler/SecLists) +- [DirBuster](https://gitlab.com/kalilinux/packages/dirbuster) +- [OneListForAll](https://github.com/six2dez/OneListForAll) + +### How do I get support? + +Open an issue or ask in the [Discord server](https://cstef.dev/discord). + +### Is rwalk stable? + +rwalk is stable but it's still in the early stages of development. It should work for most use cases but there may be bugs. + +### Where can I test this tool? + +You can use the [ffuf.me](http://ffuf.me) website to test rwalk. +I also wrote a [blog post](https://blog.cstef.dev/posts/web-scanning-efficiently) about it with a few cool examples. \ No newline at end of file diff --git a/docs/pages/response-filters.mdx b/docs/pages/responses.mdx similarity index 100% rename from docs/pages/response-filters.mdx rename to docs/pages/responses.mdx