-
-
Save pawiromitchel/9343a3ec1a91efaefbfe9f85f176522d to your computer and use it in GitHub Desktop.
gobuster enumerator for hack-the-box machines. This generates huge amount of useless requests..
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -eu | |
URL=$1 | |
clear | |
echo "Super go bustering for super brute: $URL" | |
gobuster -u $URL -l -s 200,204,301,302,307,403 -w /usr/share/wordlists/SecLists/Discovery/Web-Content/tomcat.txt | |
gobuster -u $URL -l -s 200,204,301,302,307,403 -w /usr/share/wordlists/SecLists/Discovery/Web-Content/nginx.txt | |
gobuster -u $URL -l -s 200,204,301,302,307,403 -w /usr/share/wordlists/SecLists/Discovery/Web-Content/apache.txt | |
gobuster -u $URL -l -s 200,204,301,302,307,403 -w /usr/share/wordlists/SecLists/Discovery/Web-Content/ApacheTomcat.fuzz.txt | |
gobuster -u $URL -l -s 200,204,301,302,307,403 -w /usr/share/wordlists/SecLists/Discovery/Web-Content/CMS/sharepoint.txt | |
gobuster -u $URL -l -s 200,204,301,302,307,403 -w /usr/share/wordlists/SecLists/Discovery/Web-Content/iis.txt | |
gobuster -u $URL -l -s 200,204,301,302,307,403 -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt | |
gobuster -u $URL -l -s 200,204,301,302,307,403 -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -e -x txt | |
gobuster -u $URL -l -s 200,204,301,302,307,403 -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -e -x php | |
gobuster -u $URL -l -s 200,204,301,302,307,403 -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -e -x doc | |
gobuster -u $URL -l -s 200,204,301,302,307,403 -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt -e -x docx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment