Last active
January 15, 2020 22:09
-
-
Save lokori/3ba0a98ab9cf9f1b17f83151295c666a to your computer and use it in GitHub Desktop.
Boring Hack The Box enumerator. Generates many useless and boring requests.
This file contains 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 | |
echo "Running super enum against $1" | |
# quick scan TCP | |
# nmap -v -sC -sV -oA initial_nmap $1 | |
# quick scan UDP | |
# nmap -v -sU -sC 10.10.10.92 | |
echo '----------------------------------' | |
echo 'doing some stupid dirbusting now..' | |
echo '----------------------------------' | |
i=1 | |
for list in "/root/tools/SecLists/Discovery/Web-Content/quickhits.txt" "/root/tools/SecLists/Discovery/Web-Content/tomcat.txt" "/root/tools/SecLists/Discovery/Web_Content/Top1000-RobotsDisallowed.txt" "/root/tools/SecLists/Discovery/Web_Content/common.txt" \ | |
"/root/tools/SecLists/Discovery/Web-Content/Common_PHP_Filenames.txt" "/usr/share/wordlists/dirb/big.txt" "/usr/share/dirb/wordlists/vulns/apache.txt" \ | |
"/usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt" | |
do | |
echo "dirbing $list " | |
dirb "http://$1" "$list" -o "$1-dirb-$i.txt" | |
((i++)) | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment