-
Notifications
You must be signed in to change notification settings - Fork 36
/
supergobuster.sh
executable file
·23 lines (18 loc) · 1.46 KB
/
supergobuster.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
# Standard directories for lists : SecLists/Discovery/Web-Content & SecLists/Discovery/Web-Content/CMS
# Kali / Parrot directory list : /usr/share/wordlists/dirbuster/
set -eu
URL=$1
echo "super go bustering for super brute: -u $URL"
gobuster dir -u $URL -w /home/e/CTF-notes/SecLists/Discovery/Web-Content/tomcat.txt --wildcard
gobuster dir -u $URL -w /home/e/CTF-notes/SecLists/Discovery/Web-Content/nginx.txt --wildcard
gobuster dir -u $URL -w /home/e/CTF-notes/SecLists/Discovery/Web-Content/apache.txt --wildcard
gobuster dir -u $URL -w /home/e/CTF-notes/SecLists/Discovery/Web-Content/RobotsDisallowed-Top1000.txt --wildcard
gobuster dir -u $URL -w /home/e/CTF-notes/SecLists/Discovery/Web-Content/ApacheTomcat.fuzz.txt --wildcard
# gobuster dir -u $URL -w /home/e/CTF-notes/SecLists/Discovery/Web_Content/sharepoint.txt --wildcard
gobuster dir -u $URL -w /home/e/CTF-notes/SecLists/Discovery/Web-Content/iis.txt --wildcard
gobuster dir -u $URL -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt --wildcard
gobuster dir -u $URL -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -e -x txt --wildcard
gobuster dir -u $URL -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -e -x php --wildcard
gobuster dir -u $URL -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -e -x doc --wildcard
gobuster dir -u $URL -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -e -x docx --wildcard