From 58c5e3823898c8a6c09bb1dcf586c8523771a33e Mon Sep 17 00:00:00 2001 From: Sammwy <44925968+sammwyy@users.noreply.github.com> Date: Sat, 25 Jan 2025 22:08:36 -0300 Subject: [PATCH] chore: better faqs section --- README.md | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 52ea01f..00a6875 100644 --- a/README.md +++ b/README.md @@ -128,24 +128,25 @@ const attackHandlers = { ### FAQs ❓ -> 1. What operating system does MMB support? +**1. What operating system does MMB support?** -**Re:** **Windows**, **Linux**, **Mac** and **Android (untested)** +> **Windows**, **Linux**, **Mac** and **Android (untested)** -> 2. It crashes on startup, giving a "concurrently" error. +**2. It crashes on startup, giving a "concurrently" error** -**Re:** Try running two terminals instead of one, in the first one use "npm run dev:client", and in the other one "npm run dev:server". (This happened to several people with Windows 11) +> Try running two terminals instead of one, in the first one use "npm run dev:client", and in the other one "npm run dev:server". (This happened to several people with Windows 11) -> 3. I go to "http://localhost:3000" and nothing appears. +**3. I go to "http://localhost:3000" and nothing appears.** -**Re:** Port `3000` is the server port, to see the UI you must use port `5173` (http://localhost:5173) +> Port `3000` is the server port, to see the UI you must use port `5173` (http://localhost:5173) -> 4. Requests fail to be sent to the target server (Read timeout and variations) -**Re:** You must put the corresponding proxies in the file `data/proxies.txt`. On each line, put a different proxy that will be used to perform the attack. The format must be the following: -- `protocol://user:password@host:port` (Proxy with authentication) -- `protocol://host:port` -- `host:port` (Uses http as default protocol) -- `host` (Uses 8080 as default port) +**4. Requests fail to be sent to the target server (Read timeout and variations)** + +> You must put the corresponding proxies in the file `data/proxies.txt`. On each line, put a different proxy that will be used to perform the attack. The format must be the following: +> - `protocol://user:password@host:port` (Proxy with authentication) +> - `protocol://host:port` +> - `host:port` (Uses http as default protocol) +> - `host` (Uses 8080 as default port) ---