From bcf9a4ad8e6928806b3892ca78aeecedaa770d28 Mon Sep 17 00:00:00 2001 From: Juri Date: Sun, 17 Oct 2021 02:12:21 +0200 Subject: [PATCH] dirb: add page (#6960) --- pages/linux/dirb.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/linux/dirb.md diff --git a/pages/linux/dirb.md b/pages/linux/dirb.md new file mode 100644 index 000000000..6e2fe049c --- /dev/null +++ b/pages/linux/dirb.md @@ -0,0 +1,20 @@ +# dirb + +> Scan HTTP-based webservers for directories and files. +> More information: . + +- Scan a webserver using the default wordlist: + +`dirb {{https://example.org}}` + +- Scan a webserver using a custom wordlist: + +`dirb {{https://example.org}} {{path/to/wordlist.txt}}` + +- Scan a webserver non-recursively: + +`dirb {{https://example.org}} -r` + +- Scan a webserver using a specified user-agent and cookie for HTTP-requests: + +`dirb {{https://example.org}} -a {{user_agent_string}} -c {{cookie_string}}`