assume-breach 2 лет назад
Родитель
Сommit
67ae1b8371

+ 189 - 0
AutoC2/AutoC2.sh

@@ -0,0 +1,189 @@
+#!/bin/bash
+
+NO_COLOR="\e[0m"
+WHITE="\e[0;17m"
+BOLD_WHITE="\e[1;37m"
+BLACK="\e[0;30m"
+BLUE="\e[0;34m"
+BOLD_BLUE="\e[1;34m"
+GREEN="\e[0;32m"
+BOLD_GREEN="\e[1;32m"
+CYAN="\e[0;36m"
+BOLD_CYAN="\e[1;36m"
+RED="\e[0;31m"
+BOLD_RED="\e[1;31m"
+PURPLE="\e[0;35m"
+BOLD_PURPLE="\e[1;35m"
+BROWN="\e[0;33m"
+BOLD_YELLOW="\e[1;33m"
+GRAY="\e[0;37m"
+BOLD_GRAY="\e[1;30m"
+red='\033[0;31m'
+green='\033[0;32m'
+yellow='\033[0;33m'
+blue='\033[0;34m'
+magenta='\033[0;35m'
+cyan='\033[0;36m'
+# Clear the color after that
+clear='\033[0m'
+
+function easyexit()
+{
+	clear
+	exit
+}
+
+function title() {
+echo -e "$BOLD_GREEN
+   
+                _         _____ ___  
+     /\        | |       / ____|__ \ 
+    /  \  _   _| |_ ___ | |       ) |
+   / /\ \| | | | __/ _ \| |      / / 
+  / ____ \ |_| | || (_) | |____ / /_ 
+ /_/    \_\__,_|\__\___/ \_____|____|
+                                     
+                                                                     
+          **by assume-breach**
+
+   All The Tools Your Know And Love
+
+WARNING THIS SCRIPT TAKES FUCKING FOREVER!!!"
+}
+
+title
+echo -e $BOLD_CYAN
+echo "Choose an option:"
+echo ""
+echo -e "$BOLD_BLUE 00.$BOLD_WHITE All Gold Everything (Install All Tools)"
+echo -e "$BOLD_BLUE 1.$BOLD_WHITE Install Dependencies"
+echo -e "$BOLD_BLUE 2.$BOLD_WHITE Install Wordlists"
+echo -e "$BOLD_BLUE 3.$BOLD_WHITE Install Recon Tools"
+echo -e "$BOLD_BLUE 4.$BOLD_WHITE Install Initial Access Tools"
+echo -e "$BOLD_BLUE 5.$BOLD_WHITE Install Payload Development Tools"
+echo -e "$BOLD_BLUE 6.$BOLD_WHITE Install C2 Frameworks"
+echo -e "$BOLD_BLUE 7.$BOLD_WHITE Install Powershell Tools"
+echo -e "$BOLD_BLUE 8.$BOLD_WHITE Install Staging Tools"
+echo -e "$BOLD_BLUE 9.$BOLD_WHITE Install Log Aggregation Tools"
+echo -e "$BOLD_BLUE 10.$BOLD_WHITE Install Situational Awareness Tools"
+echo -e "$BOLD_BLUE 11.$BOLD_WHITE Install Credential Dumping Tools"
+echo -e "$BOLD_BLUE 12.$BOLD_WHITE Install Privilege Escallation Tools"
+echo -e "$BOLD_BLUE 13.$BOLD_WHITE Install Defense Evasion Tools"
+echo -e "$BOLD_BLUE 14.$BOLD_WHITE Install Web Tools"
+echo -e "$BOLD_BLUE 15.$BOLD_WHITE Install Social Engineering Tools"
+echo -e "$BOLD_BLUE 16.$BOLD_WHITE Install Phishing Tools"
+echo -e "$BOLD_BLUE 17.$BOLD_WHITE Install Persistence Tools"
+echo -e "$BOLD_BLUE 18.$BOLD_WHITE Install Lateral Movement Tools"
+echo -e "$BOLD_BLUE 19.$BOLD_WHITE Install Exfiltration Tools"
+echo -e "$BOLD_BLUE 20.$BOLD_WHITE Install Cloud Tools"
+echo -e "$BOLD_BLUE 21.$BOLD_WHITE Install Hak5 Documentation"
+echo -e "$BOLD_BLUE 22.$BOLD_WHITE Install Wireless Tools"
+echo -e "$BOLD_BLUE 23.$BOLD_WHITE Install Virtual Machines"
+echo ""
+echo -n -e "$BOLD_WHITE > "
+read CHOICE
+clear
+
+if [ $CHOICE == 1 ]; then
+	echo ""
+	bash AutoC2/Dependencies.sh
+
+elif [ $CHOICE == 2 ]; then 
+	echo ""
+	bash AutoC2/Wordlists.sh
+
+elif [ $CHOICE == 3 ]; then 
+	echo ""
+	bash AutoC2/Recon.sh
+
+elif [ $CHOICE == 4 ]; then 
+	echo ""
+	bash AutoC2/Initial_Access.sh
+
+elif [ $CHOICE == 5 ]; then 
+	echo ""
+	bash AutoC2/Payload_Development.sh
+
+elif [ $CHOICE == 6 ]; then 
+	echo ""
+	bash AutoC2/C2.sh
+
+elif [ $CHOICE == 7 ]; then 
+	echo ""
+	bash AutoC2/Powershell.sh
+
+elif [ $CHOICE == 8 ]; then 
+	echo ""
+	bash AutoC2/Staging.sh
+
+elif [ $CHOICE == 9 ]; then 
+	echo ""
+	bash AutoC2/Log_Aggregation.sh
+
+elif [ $CHOICE == 10 ]; then 
+	echo ""
+	bash AutoC2/Situational_Awareness.sh
+
+elif [ $CHOICE == 11 ]; then 
+	echo ""
+	bash AutoC2/Cred_Dump.sh
+
+elif [ $CHOICE == 12 ]; then 
+	echo ""
+	bash AutoC2/Priv_Esc.sh
+
+elif [ $CHOICE == 13 ]; then 
+	echo ""
+	bash AutoC2/Defense_Evasion.sh
+
+elif [ $CHOICE == 14 ]; then 
+	echo ""
+	bash AutoC2/Web.sh
+
+elif [ $CHOICE == 15 ]; then 
+	echo ""
+	bash AutoC2/Social.sh
+
+elif [ $CHOICE == 16 ]; then 
+	echo ""
+	bash AutoC2/Phishing.sh
+
+elif [ $CHOICE == 17 ]; then 
+	echo ""
+	bash AutoC2/Persistence.sh
+
+elif [ $CHOICE == 18 ]; then 
+	echo ""
+	bash AutoC2/Lateral.sh
+
+elif [ $CHOICE == 19 ]; then 
+	echo ""
+	bash AutoC2/Exfil.sh
+
+elif [ $CHOICE == 20 ]; then 
+	echo ""
+	bash AutoC2/Cloud.sh
+
+elif [ $CHOICE == 21 ]; then 
+	echo ""
+	bash AutoC2/Hak5.sh
+
+elif [ $CHOICE == 22 ]; then 
+	echo ""
+	bash AutoC2/Wireless.sh
+
+elif [ $CHOICE == 23 ]; then 
+	echo ""
+	bash AutoC2/VM.sh
+
+elif [ $CHOICE == 00 ]; then 
+	echo ""
+	bash AutoC2/All.sh
+
+
+
+else
+	echo -e $BOLD_RED Invalid option
+	sleep 3
+	trap easyexit EXIT
+fi

+ 53 - 0
AutoC2/AutoC2/All.sh

@@ -0,0 +1,53 @@
+echo "Installing All Tools"
+echo""
+bash AutoC2/Dependencies.sh
+echo ""
+bash AutoC2/Wordlists.sh
+echo ""
+bash AutoC2/Recon.sh
+echo ""
+bash AutoC2/Initial_Access.sh
+echo ""
+bash AutoC2/Payload_Development.sh
+echo ""
+bash AutoC2/C2.sh
+echo ""
+bash AutoC2/Powershell.sh
+echo ""
+bash AutoC2/Staging.sh
+echo ""
+bash AutoC2/Log_Aggregation.sh
+echo ""
+bash AutoC2/Situational_Awareness.sh
+echo ""
+bash AutoC2/Cred_Dump.sh
+echo ""
+bash AutoC2/Priv_Esc.sh
+echo ""
+bash AutoC2/Defense_Evasion.sh
+echo ""
+bash AutoC2/Web.sh
+echo ""
+bash AutoC2/Social.sh
+echo ""
+bash AutoC2/Phishing.sh
+echo ""
+bash AutoC2/Persistence.sh
+echo ""
+bash AutoC2/Lateral.sh
+echo ""
+bash AutoC2/Exfil.sh
+echo ""
+bash AutoC2/Cloud.sh
+echo ""
+bash AutoC2/Hak5.sh
+echo ""
+bash AutoC2/Wireless.sh
+echo ""
+bash AutoC2/VM.sh
+echo ""
+apt --fix-broken install -y
+read -p "Press Enter To Reboot Your New C2 Box"
+reboot now
+
+

+ 305 - 0
AutoC2/AutoC2/C2.sh

@@ -0,0 +1,305 @@
+apt-get update -y && apt-get upgrade -y 
+apt update -y && apt upgrade -y
+apt autoremove -y
+echo ""
+sleep 2
+echo "Installing System Dependencies"
+echo ""
+sleep 2
+apt --fix-broken install
+apt install git -y
+apt --fix-broken install
+apt install net-tools -y 
+apt install gparted -y
+apt install php-curl -y 
+apt install php-xml -y
+apt install docker -y
+apt install docker.io -y 
+apt install ruby-bundler -y 
+apt install golang -y
+apt install python-pip -y 
+apt install python3 -y 
+apt install make -y 
+apt install snap -y 
+apt install fuse -y
+apt install ruby-bundler -y 
+apt install pipx -y 
+apt install chromium-browser -y 
+apt install dnsmasq -y 
+apt install hostapd -y 
+apt install openssl -y 
+apt install open-vm-tools-desktop -y
+apt install build-essential -y
+apt install libpcap-dev -y
+apt install terminator -y
+apt install macchanger -y
+apt install dhcpd -y
+apt install lighttpd -y
+apt install mdk4 -y
+apt install dsniff -y
+apt install mdk3 -y
+apt install php-cgi -y
+ap install xterm -y
+apt install tshark -y
+apt --fix-broken install
+
+echo "Cloning Your C2 Resources"
+echo ""
+mkdir /opt/Command_And_Control >/dev/null 2>&1
+cd /opt/Command_And_Control/
+echo "Cloning C2 Frameworks"
+echo ""
+echo "Installing Empire & Starkiller"
+echo ""
+sleep 2
+git clone https://github.com/BC-SECURITY/Empire.git
+version=$(lsb_release -sr)
+cd Empire/
+pip install poetry -y
+wget https://github.com/PowerShell/PowerShell/releases/download/v7.2.2/powershell-lts_7.2.2-1.deb_amd64.deb
+dpkg -i powershell-lts_7.2.2-1.deb_amd64.deb
+find ./ -type f -print0 | xargs -0 sed -i "s/20.04/${version}/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/18.04/${version}/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/21.04/${version}/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/21.10/${version}/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/16.04/${version}/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/22.04/${version}/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/22.10/${version}/g"
+
+cd setup/
+bash install.sh
+cd ../
+sudo wget https://github.com/BC-SECURITY/Starkiller/releases/download/v1.8.0/starkiller-1.8.0.AppImage
+sudo chmod +x starkiller-1.8.0.AppImage
+echo""
+sleep 2
+cd /opt/Command_And_Control/
+echo "Installing PoshC2"
+echo ""
+git clone https://github.com/nettitude/PoshC2.git
+cd PoshC2/
+bash Install.sh
+cd /opt/Command_And_Control/
+echo ""
+echo "Installing Merlin C2"
+echo ""
+sleep 2
+git clone https://github.com/Ne0nd0g/merlin.git
+cd merlin/
+go build
+cd /opt/Command_And_Control/
+echo ""
+echo "Installing Mythic"
+echo ""
+sleep 2
+git clone https://github.com/its-a-feature/Mythic.git
+cd Mythic/
+./install_docker_ubuntu.sh
+echo ""
+echo "Welcome To Covenant Randomizer!"
+sleep 2
+echo ""
+echo "Covenant Randomizer now uses Docker. Refer to the github for the docker command to start Covenant"
+echo ""
+sleep 3
+echo "Enter A Random Word!"
+read Random1
+echo ""
+echo "Enter A Different Random Word!"
+read Random2	
+echo ""
+echo "Enter A Different Random Word!"
+read Random3
+
+apt install -y docker.io
+
+custom1=$(echo $custom1 | md5sum | head -c 20)
+
+sudo git clone --recurse-submodules https://github.com/ZeroPointSecurity/Covenant.git /opt/Covenant
+
+cd /opt/Covenant/Covenant/
+
+mv ./Data/AssemblyReferences/ ../AssemblyReferences/
+
+mv ./Data/ReferenceSourceLibraries/ ../ReferenceSourceLibraries/
+
+mv ./Data/EmbeddedResources/ ../EmbeddedResources/
+
+mv ./Models/Covenant/ ./Models/${Random1^}/
+mv ./Components/CovenantUsers/ ./Components/${Random1^}Users/
+mv ./Components/Grunts/ ./Components/${Random2^}s/
+mv ./Models/Grunts/ ./Models/${Random2^}s/
+mv ./Data/Grunt/GruntBridge/ ./Data/Grunt/${Random2^}Bridge/
+mv ./Data/Grunt/GruntHTTP/ ./Data/Grunt/${Random2^}HTTP/
+mv ./Data/Grunt/GruntSMB/ ./Data/Grunt/${Random2^}SMB/
+mv ./Components/GruntTaskings/ ./Components/${Random2^}Taskings/
+mv ./Components/GruntTasks/ ./Components/${Random2^}Tasks/
+mv ./Data/Grunt/ ./Data/${Random2^}/
+
+
+
+find ./ -type f -print0 | xargs -0 sed -i "s/Grunt/${Random2^}/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/GRUNT/${Random2^^}/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/grunt/${Random2,,}/g"
+
+#find ./ -type f -print0 | xargs -0 sed -i "s/covenant/${Random1,,}/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/Covenant/${Random1^}/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/COVENANT/${Random1^^}/g"
+
+find ./ -type f -print0 | xargs -0 sed -i "s/ExecuteStager/ExecLevel/g"
+#find ./ -type f -print0 | xargs -0 sed -i "s/REPLACE_PROFILE/REP_PROF/g"
+#find ./ -type f -print0 | xargs -0 sed -i "s/REPLACE_PIPE/REP_PIP/g"
+#find ./ -type f -print0 | xargs -0 sed -i "s/GUID/ANGID/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/SetupAES/Install"${custom1}"AES/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/SessionKey/Sess"${custom1}"KEy/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/EncryptedChallenge/Enc"${custom1}"ChallEnge/g"
+
+find ./ -type f -print0 | xargs -0 sed -i "s/DecryptedChallenges/Decrypt"${custom1}"ChallEnges/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/Stage0Body/First"${custom1}"Body/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/Stage0Response/First"${custom1}"Response/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/Stage0Bytes/First"${custom1}"Bytes/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/Stage1Body/Seccond"${custom1}"Body/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/Stage1Response/Seccond"${custom1}"Response/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/Stage1Bytes/Seccond"${custom1}"Bytes/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/Stage2Body/Third"${custom1}"Body/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/Stage2Response/Third"${custom1}"Response/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/Stage2Bytes/Third"${custom1}"Bytes/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/message64str/messAgE"${custom1}"64str/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/messageBytes/messAgE"${custom1}"bytes/g"
+
+find ./ -type f -print0 | xargs -0 sed -i "s/totalReadBytes/ToTal"${custom1}"ReaDBytes/g"
+#find ./ -type f -print0 | xargs -0 sed -i "s/inputStream/instream/g"
+#find ./ -type f -print0 | xargs -0 sed -i "s/outputStream/outstream/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/deflateStream/deFlatE"${custom1}"stream/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/memoryStream/memOrYstream/g" #don't change
+find ./ -type f -print0 | xargs -0 sed -i "s/compressedBytes/packed"${custom1}"bytes/g"
+
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/REPLACE_/REP"${custom1}"_/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/_PROFILE_/_PROF"${custom1}"_/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/_VALIDATE_/_VA"${custom1}"L_/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/GUID/${Random3^^}/g"
+find ./ -type f -name "*.razor" -print0 | xargs -0 sed -i "s/GUID/${Random3^^}/g"
+find ./ -type f -name "*.json" -print0 | xargs -0 sed -i "s/GUID/${Random3^^}/g"
+find ./ -type f -name "*.yaml" -print0 | xargs -0 sed -i "s/GUID/${Random3^^}/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/guid/${Random3,,}/g"
+find ./ -type f -name "*.razor" -print0 | xargs -0 sed -i "s/guid/${Random3,,}/g"
+find ./ -type f -name "*.json" -print0 | xargs -0 sed -i "s/guid/${Random3,,}/g"
+find ./ -type f -name "*.yaml" -print0 | xargs -0 sed -i "s/guid/${Random3,,}/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/ProfileHttp/Prof"${custom1}"HTTP/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/baseMessenger/bAse"${custom1}"mEsSenger/g"
+
+find ./ -type f -print0 | xargs -0 sed -i "s/PartiallyDecrypted/Part"${custom1}"decrypted/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/FullyDecrypted/Fulld"${custom1}"ecrypted/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/compressedBytes/packed"${custom1}"bytes/g"
+
+find ./ -type f -print0 | xargs -0 sed -i "s/CookieWebClient/Ottos"${custom1}"WebClient/g"
+#find ./ -type f -print0 | xargs -0 sed -i "s/CookieContainer/KekseContains/g"
+#find ./ -type f -print0 | xargs -0 sed -i "s/GetWebRequest/DoAnWebReq/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/Jitter/JIt"${custom1}"ter/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/ConnectAttempts/ConneCT"${custom1}"AttEmpts/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/RegisterBody/Reg"${custom1}"Body/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/messenger/meSsenGer"${custom1}"/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/Hello World/"${custom1}"/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/ValidateCert/Val"${custom1}"CerT/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/UseCertPinning/UsCert"${custom1}"Pin/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/EncryptedMessage/Enc"${custom1}"Msg/g"
+find ./ -type f -print0 | xargs -0 sed -i "s/cookieWebClient/"${custom1}"WebClient/g" #ottos
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/aes/crypt"${custom1}"var/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/aes2/crypt"${custom1}"var2/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array5/ar"${custom1}"r5/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array6/ar"${custom1}"r6/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array4/ar"${custom1}"r4/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array7/ar"${custom1}"r7/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array1/ar"${custom1}"r1/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array2/ar"${custom1}"r2/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/array3/ar"${custom1}"r3/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/list1/l"${custom1}"i1/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/list2/l"${custom1}"i2/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/list3/l"${custom1}"i3/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/list4/l"${custom1}"i4/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/list5/l"${custom1}"i5/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group0/gr"${custom1}"p0/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group1/gr"${custom1}"p1/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group2/gr"${custom1}"p2/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group3/gr"${custom1}"p3/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group4/gr"${custom1}"p4/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group5/gr"${custom1}"p5/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group6/gr"${custom1}"p6/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group7/gr"${custom1}"p7/g"
+find ./ -type f -name "*.cs" -print0 | xargs -0 sed -i "s/group8/gr"${custom1}"p8/g"
+
+find ./ -type f -name "*Grunt*" | while read FILE ; do
+	newfile="$(echo ${FILE} |sed -e "s/Grunt/${Random2^}/g")";
+	mv "${FILE}" "${newfile}";
+done
+find ./ -type f -name "*GRUNT*" | while read FILE ; do
+	newfile="$(echo ${FILE} |sed -e "s/GRUNT/${Random2^^}/g")";
+	mv "${FILE}" "${newfile}";
+done
+
+find ./ -type f -name "*grunt*" | while read FILE ; do
+	newfile="$(echo ${FILE} |sed -e "s/grunt/${Random2,,}/g")";
+	mv "${FILE}" "${newfile}";
+done
+
+find ./ -type f -name "*Covenant*" | while read FILE ; do
+	newfile="$(echo ${FILE} |sed -e "s/Covenant/${Random1^}/g")";
+	mv "${FILE}" "${newfile}";
+done
+
+find ./ -type f -name "*COVENANT*" | while read FILE ; do
+	newfile="$(echo ${FILE} |sed -e "s/COVENANT/${Random2^^}/g")";
+	mv "${FILE}" "${newfile}";
+done
+
+#find ./ -type f -name "*covenant*" | while read FILE ; do
+#	newfile="$(echo ${FILE} |sed -e "s/covenant/ottocommand/g")";
+#	mv "${FILE}" "${newfile}";
+#done
+
+mv ../AssemblyReferences/ ./Data/ 
+
+mv ../ReferenceSourceLibraries/ ./Data/ 
+
+mv ../EmbeddedResources/ ./Data/ 
+
+docker build -t covenant .
+
+echo ""
+cd /opt/Command_And_Control/
+echo "Installing Shad0w"
+echo ""
+sleep 2
+git clone https://github.com/bats3c/shad0w.git
+cd shad0w/
+bash install.sh
+echo ""
+cd /opt/Command_And_Control/
+echo "Installing Havoc C2"
+echo ""
+git clone https://github.com/HavocFramework/Havoc.git
+echo ""
+sleep 2
+echo "Installing Sliver"
+echo ""
+sleep 2
+git clone https://github.com/BishopFox/sliver.git
+cd sliver/
+python3 build.py
+cd /opt/Command_And_Control
+echo ""
+echo "Installing Metasploit"
+sleep 2
+echo ""
+apt install postgresql -y
+systemctl start postgresql 
+systemctl enable postgresql
+apt install curl -y
+apt --fix-broken install -y
+cd /opt/Command_And_Control/
+curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall
+chmod +x msfinstall
+./msfinstall
+apt --fix-broken install -y
+echo ""
+mv /opt/Covenant /opt/Command_And_Control

+ 131 - 0
AutoC2/AutoC2/Cloud.sh

@@ -0,0 +1,131 @@
+apt-get update -y && apt-get upgrade -y 
+apt update -y && apt upgrade -y
+apt autoremove -y
+echo ""
+sleep 2
+echo "Installing System Dependencies"
+echo ""
+sleep 2
+apt --fix-broken install
+apt install git -y
+apt --fix-broken install
+apt install net-tools -y 
+apt install gparted -y
+apt install php-curl -y 
+apt install php-xml -y
+apt install docker -y
+apt install docker.io -y 
+apt install ruby-bundler -y 
+apt install golang -y
+apt install python-pip -y 
+apt install python3 -y 
+apt install make -y 
+apt install snap -y 
+apt install fuse -y
+apt install ruby-bundler -y 
+apt install pipx -y 
+apt install chromium-browser -y 
+apt install dnsmasq -y 
+apt install hostapd -y 
+apt install openssl -y 
+apt install open-vm-tools-desktop -y
+apt install build-essential -y
+apt install libpcap-dev -y
+apt install terminator -y
+apt install macchanger -y
+apt install dhcpd -y
+apt install lighttpd -y
+apt install mdk4 -y
+apt install dsniff -y
+apt install mdk3 -y
+apt install php-cgi -y
+ap install xterm -y
+apt install tshark -y
+apt --fix-broken install
+echo ""
+echo "Cloning Cloud Resources"
+echo ""
+sleep 2
+mkdir /opt/Windows_OS >/dev/null 2>&1
+mkdir /opt/Cloud >/dev/null 2>&1
+cd /opt/Cloud
+echo ""
+mkdir AWS >/dev/null 2>&1
+cd AWS/
+echo "Installing AWS Resources"
+echo ""
+sleep 2
+echo ""
+echo "Installing Pacu"
+echo ""
+sleep 2
+git clone https://github.com/RhinoSecurityLabs/pacu.git
+cd pacu/
+bash install.sh
+echo ""
+cd /opt/Cloud/AWS/
+echo "Installing CloudMapper"
+echo ""
+sleep 2
+git clone https://github.com/duo-labs/cloudmapper.git
+pip3 install -r requirements.txt
+echo ""
+echo "Installing Enumerate-IAM"
+echo ""
+sleep 2
+cd /opt/Cloud/AWS/
+git clone https://github.com/andresriancho/enumerate-iam.git
+cd enumerate-iam/
+pip3 install -r requirements.txt
+echo ""
+cd /opt/Cloud/AWS/
+echo "Installing AWSBucketDump"
+echo ""
+sleep 2
+git clone https://github.com/jordanpotti/AWSBucketDump.git
+cd AWSBucketDump/
+pip3 install -r requirements.txt
+cd /opt/Cloud/
+mkdir Azure >/dev/null 2>&1
+cd Azure
+echo "Installing Azure Resources"
+echo ""
+echo "Installing ADConnectDump"
+echo ""
+sleep 2
+git clone https://github.com/fox-it/adconnectdump.git
+echo ""
+cd /opt/Cloud/Azure/
+echo ""
+echo "Installing Stormspotter"
+echo ""
+sleep 2
+git clone https://github.com/Azure/Stormspotter.git
+cd /opt/Cloud/Azure/
+echo ""
+echo "Installing ROADtools"
+echo ""
+sleep 2
+git clone https://github.com/dirkjanm/ROADtools.git
+cd ROADtools/
+pip install -e roadlib/
+pip install -e roadrecon/
+cd roadrecon/frontend/
+npm install
+npm audit fix
+echo ""
+echo "Installing MicroBurst"
+echo ""
+sleep 2
+cd /opt/Cloud/Azure/
+git clone https://github.com/NetSPI/MicroBurst.git
+echo ""
+echo "Installing AADInternals"
+echo ""
+sleep 2
+cd /opt/Windows_OS/ 
+mkdir Cloud >/dev/null 2>&1
+cd Cloud
+mkdir Azure >/dev/null 2>&1
+cd Azure
+git clone https://github.com/Gerenios/AADInternals.git 

+ 134 - 0
AutoC2/AutoC2/Cred_Dump.sh

@@ -0,0 +1,134 @@
+apt-get update -y && apt-get upgrade -y 
+apt update -y && apt upgrade -y
+apt autoremove -y
+echo ""
+sleep 2
+echo "Installing System Dependencies"
+echo ""
+sleep 2
+apt --fix-broken install
+apt install git -y
+apt --fix-broken install
+apt install net-tools -y 
+apt install gparted -y
+apt install php-curl -y 
+apt install php-xml -y
+apt install docker -y
+apt install docker.io -y 
+apt install ruby-bundler -y 
+apt install golang -y
+apt install python-pip -y 
+apt install python3 -y 
+apt install make -y 
+apt install snap -y 
+apt install fuse -y
+apt install ruby-bundler -y 
+apt install pipx -y 
+apt install chromium-browser -y 
+apt install dnsmasq -y 
+apt install hostapd -y 
+apt install openssl -y 
+apt install open-vm-tools-desktop -y
+apt install build-essential -y
+apt install libpcap-dev -y
+apt install terminator -y
+apt install macchanger -y
+apt install dhcpd -y
+apt install lighttpd -y
+apt install mdk4 -y
+apt install dsniff -y
+apt install mdk3 -y
+apt install php-cgi -y
+ap install xterm -y
+apt install tshark -y
+apt --fix-broken install
+echo ""
+echo "Cloning Credential Dumping Resource"
+echo ""
+sleep 2
+mkdir /opt/Windows_OS >/dev/null 2>&1
+cd /opt/Windows_OS
+mkdir Credential_Dumping >/dev/null 2>&1
+cd Credential_Dumping/
+echo ""
+echo "Cloning Mimikatz"
+echo ""
+sleep2
+git clone https://github.com/gentilkiwi/mimikatz.git
+echo ""
+echo "Cloning Dumpert"
+echo ""
+sleep 2
+git clone https://github.com/outflanknl/Dumpert.git
+echo ""
+echo "Cloning SharpLAPS"
+echo ""
+sleep 2
+git clone https://github.com/swisskyrepo/SharpLAPS.git
+echo ""
+echo "Cloning SharpDPAPI"
+echo ""
+sleep 2
+git clone https://github.com/GhostPack/SharpDPAPI.git
+echo ""
+echo "Cloning KeeThief"
+echo ""
+sleep 2
+git clone https://github.com/GhostPack/KeeThief.git
+echo ""
+echo "Cloning SafetyKatz"
+echo ""
+sleep 2
+git clone https://github.com/GhostPack/SafetyKatz.git
+echo ""
+echo "Cloning Forkatz"
+echo ""
+sleep 2
+git clone https://github.com/Barbarisch/forkatz.git
+echo ""
+echo "Cloning PPLKiller"
+echo ""
+sleep 2
+git clone https://github.com/RedCursorSecurityConsulting/PPLKiller.git
+echo ""
+echo "Cloning LaZagne"
+echo ""
+sleep 2
+git clone https://github.com/AlessandroZ/LaZagne.git
+echo ""
+echo "Cloning AndrewSpecial"
+echo ""
+sleep 2
+git clone https://github.com/hoangprod/AndrewSpecial.git
+echo ""
+echo "Cloning Net-GPPassword"
+echo ""
+sleep 2
+git clone https://github.com/outflanknl/Net-GPPPassword.git
+echo ""
+echo "Cloning SharpChromium"
+echo ""
+sleep 2
+git clone https://github.com/djhohnstein/SharpChromium.git
+echo ""
+echo "Cloning Chlonium"
+echo ""
+sleep 2
+git clone https://github.com/rxwx/chlonium.git
+echo ""
+echo "Cloning SharpCloud"
+echo ""
+sleep 2
+git clone https://github.com/chrismaddalena/SharpCloud.git
+echo ""
+echo "Cloning PypyKatz"
+echo ""
+sleep 2
+git clone https://github.com/skelsec/pypykatz.git
+echo ""
+echo "Cloning NanoDump"
+echo ""
+sleep 2
+git clone https://github.com/helpsystems/nanodump.git
+echo ""
+sleep 2

+ 28 - 0
AutoC2/AutoC2/Defense_Evasion.sh

@@ -0,0 +1,28 @@
+echo ""
+echo "Cloning Defense Evasion Resources -- This is all Windows Based"
+echo ""
+sleep 2
+mkdir /opt/Windows_OS >/dev/null 2>&1
+cd /opt/Windows_OS/
+mkdir Defense_Evasion >/dev/null 2>&1
+cd Defense_Evasion/
+git clone https://github.com/hlldz/RefleXXion.git
+git clone https://github.com/wavestone-cdt/EDRSandblast.git
+git clone https://github.com/APTortellini/unDefender.git
+git clone https://github.com/Yaxser/Backstab.git
+git clone https://github.com/boku7/spawn.git
+git clone https://github.com/CCob/BOF.NET.git
+git clone https://github.com/Flangvik/NetLoader.git
+git clone https://github.com/outflanknl/FindObjects-BOF.git
+git clone https://github.com/GetRektBoy724/SharpUnhooker.git
+git clone https://github.com/bats3c/EvtMute.git
+git clone https://github.com/xforcered/InlineExecute-Assembly.git
+git clone https://github.com/hlldz/Phant0m.git 
+git clone https://github.com/CCob/SharpBlock.git
+git clone https://github.com/Kharos102/NtdllUnpatcher.git
+git clone https://github.com/bats3c/DarkLoadLibrary.git 
+git clone https://github.com/Soledge/BlockEtw.git
+git clone https://github.com/mdsecactivebreach/firewalker.git
+git clone https://github.com/Cerbersec/KillDefenderBOF.git
+git clone https://github.com/matterpreter/OffensiveCSharp.git
+echo ""

+ 45 - 0
AutoC2/AutoC2/Dependencies.sh

@@ -0,0 +1,45 @@
+apt-get update -y && apt-get upgrade -y 
+apt update -y && apt upgrade -y
+apt autoremove -y
+echo ""
+sleep 2
+echo "Installing System Dependencies"
+echo ""
+sleep 2
+apt --fix-broken install
+apt install git -y
+apt --fix-broken install
+apt install net-tools -y 
+apt install gparted -y
+apt install php-curl -y 
+apt install php-xml -y
+apt install docker -y
+apt install docker.io -y 
+apt install ruby-bundler -y 
+apt install golang -y
+apt install python-pip -y 
+apt install python3 -y 
+apt install make -y 
+apt install snap -y 
+apt install fuse -y
+apt install ruby-bundler -y 
+apt install pipx -y 
+apt install chromium-browser -y 
+apt install dnsmasq -y 
+apt install hostapd -y 
+apt install openssl -y 
+apt install open-vm-tools-desktop -y
+apt install build-essential -y
+apt install libpcap-dev -y
+apt install terminator -y
+apt install macchanger -y
+apt install dhcpd -y
+apt install lighttpd -y
+apt install mdk4 -y
+apt install dsniff -y
+apt install mdk3 -y
+apt install php-cgi -y
+ap install xterm -y
+apt install tshark -y
+apt --fix-broken install
+echo ""

+ 13 - 0
AutoC2/AutoC2/Exfil.sh

@@ -0,0 +1,13 @@
+echo ""
+echo "Cloning Exfiltration Resources"
+echo ""
+sleep 2
+mkdir /opt/Windows_OS >/dev/null 2>&1
+cd /opt/Windows_OS/
+mkdir Exfiltration >/dev/null 2>&1
+cd Exfiltration/
+echo ""
+sleep 2
+git clone https://github.com/Flangvik/SharpExfiltrate.git
+git clone https://github.com/Arno0x/DNSExfiltrator.git
+git clone https://github.com/FortyNorthSecurity/Egress-Assess.git

+ 34 - 0
AutoC2/AutoC2/Hak5.sh

@@ -0,0 +1,34 @@
+echo ""
+echo "Cloning Hak5 Implant Resources"
+echo ""
+mkdir /opt/Hak5_Implants >/dev/null 2>&1
+cd /opt/Hak5_Implants
+echo ""
+git clone https://github.com/hak5/omg-payloads.git
+echo ""
+git clone https://github.com/hak5/bashbunny-payloads.git
+echo ""
+git clone https://github.com/hak5/usbrubberducky-payloads.git
+echo ""
+git clone https://github.com/hak5/pineapple-community-packages.git
+echo ""
+git clone https://github.com/hak5/pineapple-modules.git
+echo ""
+git clone https://github.com/hak5/mk7-docs.git
+echo ""
+git clone https://github.com/hak5/keycroc-payloads.git
+echo ""
+git clone https://github.com/hak5/sharkjack-payloads.git
+echo ""
+git clone https://github.com/hak5/lanturtle-modules.git
+echo ""
+git clone https://github.com/hak5/hak5-docs.git
+echo ""
+git clone https://github.com/hak5/packetsquirrel-payloads.git
+echo ""
+git clone https://github.com/hak5/nano-tetra-modules.git
+echo ""
+git clone https://github.com/hak5/signalowl-payloads.git
+echo ""
+git clone https://github.com/hak5/plunderbug-scripts.git
+echo ""

+ 33 - 0
AutoC2/AutoC2/Initial_Access.sh

@@ -0,0 +1,33 @@
+echo""
+echo "Installing Initial Access Tools"
+echo ""
+sleep 2
+mkdir /opt/Initial_Access >/dev/null 2>&1
+cd /opt/Initial_Access/
+echo "Installing Spraying Toolkit"
+echo ""
+sleep 2
+git clone https://github.com/byt3bl33d3r/SprayingToolkit.git
+cd SprayingToolkit/
+pip3 install -r requirements.txt
+cd /opt/Initial_Access
+echo ""
+sleep 2
+echo "Installing O365 Recon"
+echo ""
+git clone https://github.com/nyxgeek/o365recon.git
+echo ""
+sleep 2
+echo "Installing TREVORspray"
+echo ""
+sleep 2
+git clone https://github.com/blacklanternsecurity/TREVORspray.git
+cd TREVORspray/
+pip3 install -r requirements.txt
+sleep 2
+echo ""
+echo "Installing O365 Attack Toolkit"
+echo ""
+sleep 2
+git clone https://github.com/mdsecactivebreach/o365-attack-toolkit.git
+echo ""

+ 74 - 0
AutoC2/AutoC2/Lateral.sh

@@ -0,0 +1,74 @@
+echo ""
+echo "Cloning Lateral Movement Resources"
+echo ""
+mkdir /opt/Windows_OS >/dev/null 2>&1
+mkdir /opt/Lateral_Movement >/dev/null 2>&1
+cd /opt/Lateral_Movement/
+apt install ettercap-graphical -y
+echo ""
+echo "Installing LDAP Tools"
+echo ""
+apt install ldap-utils -y
+echo ""
+echo "Installing Kerbrute"
+echo ""
+git clone https://github.com/ropnop/kerbrute.git
+echo ""
+echo "Installing Petitpotam"
+sleep 2
+git clone https://github.com/topotam/PetitPotam.git
+echo ""
+echo "Installing Responder"
+echo ""
+sleep 2
+git clone https://github.com/lgandx/Responder.git
+echo ""
+echo "Installing MITM6"
+echo ""
+sleep 2
+git clone https://github.com/dirkjanm/mitm6.git
+cd mitm6/
+pip3 install -r requirements.txt
+python3 setup.py install
+cd /opt/Lateral_Movement/
+echo ""
+echo "Installing Impacket"
+echo ""
+sleep 2
+git clone https://github.com/SecureAuthCorp/impacket.git
+cd impacket/
+python3 setup.py install
+echo ""
+sleep 2
+cd /opt/Lateral_Movement/
+echo "Cloning CrackMapExec"
+git clone https://github.com/byt3bl33d3r/CrackMapExec.git
+cd CrackMapExec/
+echo "Cloning Windows Lateral Movement Resources"
+echo ""
+sleep 2
+cd /opt/Windows_OS/
+mkdir Lateral_Movement >/dev/null 2>&1
+cd Lateral_Movement/
+git clone https://github.com/nettitude/SharpWSUS
+git clone https://github.com/RiccardoAncarani/LiquidSnake.git
+git clone https://github.com/NetSPI/PowerUpSQL.git
+git clone https://github.com/0xthirteen/SharpRDP.git
+git clone https://github.com/0xthirteen/MoveKit.git
+git clone https://github.com/juliourena/SharpNoPSExec.git
+git clone https://github.com/mdsecactivebreach/Farmer.git
+git clone https://github.com/FortyNorthSecurity/CIMplant.git
+git clone https://github.com/Mr-Un1k0d3r/PowerLessShell.git
+git clone https://github.com/FSecureLABS/SharpGPOAbuse.git
+git clone https://github.com/ropnop/kerbrute.git 
+git clone https://github.com/blackarrowsec/mssqlproxy.git
+git clone https://github.com/Kevin-Robertson/Invoke-TheHash.git
+git clone https://github.com/Kevin-Robertson/InveighZero.git
+git clone https://github.com/jnqpblc/SharpSpray/git
+git clone https://github.com/pkb1s/SharpAllowedToAct.git
+git clone https://github.com/bohops/SharpRDPHijack.git
+git clone https://github.com/klezVirus/CheeseTools.git
+git clone https://github.com/PowerShellMafia/PowerSploit.git
+git clone https://github.com/DanMcInerney/icebreaker.git
+git clone https://github.com/JavelinNetworks/HoneypotBuster.git
+echo ""

+ 17 - 0
AutoC2/AutoC2/Log_Aggregation.sh

@@ -0,0 +1,17 @@
+echo ""
+echo "Installing Log Aggregation Resources"
+echo ""
+sleep 2
+mkdir /opt/Log_Aggregation >/dev/null 2>&1
+cd /opt/Log_Aggregation
+echo ""
+echo "Installing RedELK"
+echo ""
+sleep 2
+git clone https://github.com/outflanknl/RedELK.git
+echo ""
+echo "Installing RedTeamSIEM"
+echo ""
+sleep 2
+git clone https://github.com/SecurityRiskAdvisors/RedTeamSIEM.git
+echo ""

+ 14 - 0
AutoC2/AutoC2/Password_Cracking.sh

@@ -0,0 +1,14 @@
+echo ""
+echo "Installing Password Cracking Tools"
+echo ""
+mkdir /opt/Password_Cracking/>/dev/null 2>&1
+apt install john -y
+apt install hashcat -y
+apt install crunch -y
+apt install cewl -y
+apt install hydra -y
+apt install ncrack -y
+apt install medusa -y
+
+
+

+ 235 - 0
AutoC2/AutoC2/Payload_Development.sh

@@ -0,0 +1,235 @@
+mkdir /opt/Windows_OS >/dev/null 2>&1
+mkdir /opt/Payload_Development/ >/dev/null 2>&1
+echo ""
+echo "Installing Payload Development Resources"
+echo ""
+sleep 2
+cd /opt/Payload_Development
+echo "Installing Unicorn"
+git clone https://github.com/trustedsec/unicorn.git
+echo""
+echo "Installing Demiguise"
+echo ""
+sleep 2
+git clone https://github.com/nccgroup/demiguise.git
+echo ""
+echo "Installing The Backdoor Factory"
+echo ""
+docker pull secretsquirrel/the-backdoor-factory
+echo ""
+sleep 2
+echo "Installing Avet"
+echo ""
+git clone https://github.com/govolution/avet.git
+cd avet
+bash setup.sh
+cd /opt/Payload_Development/
+sleep 2
+echo ""
+echo "Installing MetaTwin"
+git clone https://github.com/threatexpress/metatwin.git
+echo ""
+sleep 2
+echo "Installing PSAmsi"
+git clone https://github.com/cobbr/PSAmsi.git
+sleep 2
+echo ""
+echo "Worse-PDF"
+echo ""
+git clone https://github.com/3gstudent/Worse-PDF.git
+echo ""
+sleep 2
+echo "Installing Ivy"
+echo ""
+git clone https://github.com/optiv/Ivy.git
+cd Ivy
+go get github.com/fatih/color
+go get github.com/KyleBanks/XOREncryption/Go
+go build Ivy.go
+echo ""
+cd /opt/Payload_Development/
+echo "Installing PEzor"
+echo ""
+git clone https://github.com/phra/PEzor.git
+cd PEzor/
+bash install.sh
+echo ""
+#read -p "Open A New Terminal And Export The Path For PEzor To Work!"
+echo ""
+sleep 2
+echo "Installing FUD-UUID-Shellcode"
+echo ""
+cd /opt/Payload_Development/
+git clone https://github.com/Bl4ckM1rror/FUD-UUID-Shellcode.git
+echo ""
+sleep 2
+echo "Installing Optive/Freeze"
+echo ""
+cd /opt/Payload_Development/
+git clone https://github.com/optiv/Freeze.git
+echo ""
+sleep 2
+echo "Installing ScareCrow"
+echo""
+cd /opt/Payload_Development/
+git clone https://github.com/optiv/ScareCrow.git
+cd ScareCrow/
+go get github.com/fatih/color
+go get github.com/yeka/zip
+go get github.com/josephspurrier/goversioninfo
+apt install openssl -y
+apt install osslsigncode -y
+apt install mingw-w64 -y
+go build ScareCrow.go
+cd /opt/Payload_Development/
+echo ""
+sleep 2
+echo "Installing Donut"
+echo ""
+git clone https://github.com/TheWover/donut.git
+cd donut/
+python3 setup.py install
+cd /opt/Payload_Development
+mkdir MAC_OS
+cd MAC_OS
+echo ""
+sleep 2
+echo "Installing Mystikal"
+echo ""
+git clone https://github.com/D00MFist/Mystikal.git
+cd /opt/Payload_Development/
+echo ""
+sleep 2
+cd /opt/Windows_OS/
+mkdir Payload_Development/
+cd Payload_Development/
+echo "Installing GadgetToJscript"
+git clone https://github.com/med0x2e/GadgetToJScript.git
+echo ""
+cd /opt/Payload_Development/
+echo "Installing Charlotte"
+git clone https://github.com/9emin1/charlotte.git
+echo ""
+cd /opt/Payload_Development/
+echo "Installing Invisibility Cloak"
+git clone https://github.com/xforcered/InvisibilityCloak.git
+echo ""
+cd /opt/Windows_OS/Payload_Development/
+echo "Installing Dendrobate"
+echo ""
+git clone https://github.com/FuzzySecurity/Dendrobate.git
+echo ""
+sleep 2
+cd /opt/Payload_Development/
+echo "Installing Offensive-VBA-and-XLS-Entanglement"
+echo ""
+git clone https://github.com/BC-SECURITY/Offensive-VBA-and-XLS-Entanglement.git
+sleep 2
+echo ""
+echo "Installing xlsGen"
+echo ""
+sleep 2
+git clone https://github.com/aaaddress1/xlsGen.git
+echo ""
+echo "Installing DarkArmour"
+echo ""
+sleep 2
+git clone https://github.com/bats3c/darkarmour.git
+sudo apt install mingw-w64-tools mingw-w64-common g++-mingw-w64 gcc-mingw-w64 upx-ucl osslsigncode -y
+echo ""
+echo "Installing InlineWhispers"
+echo""
+sleep 2
+git clone https://github.com/outflanknl/InlineWhispers.git
+echo ""
+cd /opt/Windows_OS/Payload_Development/
+echo "Installing EvilClippy"
+echo ""
+sleep 2
+git clone https://github.com/outflanknl/EvilClippy.git 
+echo ""
+echo "Installing OfficePurge"
+echo ""
+git clone https://github.com/fireeye/OfficePurge.git
+sleep 2
+echo ""
+echo "Installing ThreatCheck"
+echo ""
+git clone https://github.com/rasta-mouse/ThreatCheck.git
+echo ""
+echo "Ruler"
+echo ""
+sleep 2
+git clone https://github.com/sensepost/ruler.git
+echo ""
+echo "Installing DueDLLigence"
+echo ""
+sleep 2
+git clone https://github.com/fireeye/DueDLLigence.git
+echo ""
+echo "Installing RuralBishop"
+echo ""
+sleep 2
+git clone https://github.com/rasta-mouse/RuralBishop.git
+echo ""
+echo "Installing TikiTorch"
+echo ""
+sleep 2
+git clone https://github.com/rasta-mouse/TikiTorch.git 
+echo ""
+echo "Installing SharpShooter"
+echo ""
+sleep 2
+git clone https://github.com/mdsecactivebreach/SharpShooter.git
+echo ""
+echo "Installing SharpSploit"
+echo ""
+sleep 2
+git clone https://github.com/cobbr/SharpSploit.git
+echo ""
+echo "Installing MSBuildAPICaller"
+echo ""
+sleep 2
+git clone https://github.com/rvrsh3ll/MSBuildAPICaller.git
+echo ""
+echo "Installing Macro_Pack"
+echo ""
+sleep 2
+git clone https://github.com/sevagas/macro_pack.git
+echo ""
+echo "Installing Inceptor"
+echo ""
+sleep 2
+git clone https://github.com/klezVirus/inceptor.git
+echo ""
+echo "Installing Mortar"
+echo ""
+sleep 2
+git clone https://github.com/0xsp-SRD/mortar.git
+echo ""
+echo "Installing RedTeamCCode"
+echo ""
+sleep 2
+git clone https://github.com/Mr-Un1k0d3r/RedTeamCCode.git
+echo ""
+cd /opt/Payload_Development/
+echo "Installing Nimcrypt2"
+echo ""
+git clone https://github.com/icyguider/Nimcrypt2.git
+apt install gcc mingw-w64 xz-utils git
+cd Nimcrypt2/
+curl https://nim-lang.org/choosenim/init.sh -sSf | sh
+echo "export PATH=$HOME/.nimble/bin:$PATH" >> ~/.bashrc
+export PATH=$HOME/.nimble/bin:$PATH
+nimble install winim nimcrypto docopt ptr_math strenc
+nim c -d=release --cc:gcc --embedsrc=on --hints=on --app=console --cpu=amd64 --out=nimcrypt nimcrypt.nim
+cd /opt/Payload_Development/
+echo ""
+echo "Installing FourEye"
+echo ""
+sleep 2
+git clone https://github.com/lengjibo/FourEye.git
+cd FourEye/
+chmod 755 setup.sh
+./setup.sh
+echo ""

+ 17 - 0
AutoC2/AutoC2/Persistence.sh

@@ -0,0 +1,17 @@
+echo ""
+echo "Cloning Persistence Resources"
+echo ""
+mkdir /opt/Windows_OS >/dev/null 2>&1
+cd /opt/Windows_OS
+mkdir Persistence >/dev/null 2>&1
+cd Persistence/
+git clone https://github.com/0xthirteen/SharpStay.git
+git clone https://github.com/fireeye/SharPersist.git
+git clone https://github.com/outflanknl/SharpHide.git
+git clone https://github.com/Ben0xA/DoUCMe.git 
+git clone https://github.com/nccgroup/ABPTTS.git 
+git clone https://github.com/blackarrowsec/pivotnacci.git
+git clone https://github.com/sensepost/reGeorg.git
+git clone https://github.com/HarmJ0y/DAMP.git
+git clone https://github.com/0x09AL/IIS-Raid.git
+git clone https://github.com/antonioCoco/SharPyShell.git

+ 87 - 0
AutoC2/AutoC2/Phishing.sh

@@ -0,0 +1,87 @@
+echo ""
+echo "Cloning Phishing Resources"
+echo ""
+mkdir /opt/Phishing >/dev/null 2>&1
+cd /opt/Phishing/
+echo ""
+echo "Installing Phishery"
+echo ""
+sleep 2
+mkdir phishery >/dev/null 2>&1
+cd phishery
+wget https://github.com/ryhanson/phishery/releases/download/v1.0.2/phishery1.0.2linux-amd64.tar.gz
+tar -xzvf phishery*.tar.gz
+cp phishery /usr/local/bin
+cd /opt/Phishing/
+echo ""
+echo "Installing EvilginX2"
+echo ""
+sleep 2
+git clone https://github.com/kgretzky/evilginx2.git
+cd evilginx2/
+make
+sudo make install
+cd /opt/Phishing/
+echo ""
+echo "Installing PwnAuth"
+echo ""
+sleep 2
+git clone https://github.com/fireeye/PwnAuth.git
+cd PwnAuth/
+bash setup.sh
+cd /opt/Phishing/
+echo ""
+echo "Installig Modlishka"
+echo ""
+sleep 2
+git clone https://github.com/drk1wi/Modlishka.git
+cd Modlishka/
+make 
+go build
+cd /opt/Phishing/
+echo ""
+echo "Installing King-Phisher"
+echo ""
+sleep 2
+git clone https://github.com/securestate/king-phisher.git
+echo ""
+echo "Installing FiercePhish"
+echo ""
+sleep 2
+git clone https://github.com/Raikia/FiercePhish.git
+cd FiercePhish/
+bash install.sh
+echo ""
+echo "Installing ReelPhish"
+echo ""
+sleep 2
+git clone https://github.com/fireeye/ReelPhish.git
+cd ReelPhish/
+pip3 install -r requirements.txt
+cd /opt/Phishing/
+echo ""
+echo "Installing GoPhish"
+echo ""
+sleep 2
+git clone https://github.com/gophish/gophish.git
+cd gophish/
+go build
+echo ""
+cd /opt/Phishing/
+echo "Installing CredSniper"
+echo ""
+sleep 2
+git clone https://github.com/ustayready/CredSniper.git
+cd CredSniper/
+read -p "Just Hit Enter Until All Dependencies Are Installed"
+cd /opt/Phishing/
+echo ""
+echo "Cloning Phishing Pretexts"
+echo ""
+sleep 2
+git clone https://github.com/L4bF0x/PhishingPretexts.git
+echo ""
+mv /opt/app/ /opt/Phishing/
+mv /opt/sock/ /opt/Phishing/
+
+

+ 11 - 0
AutoC2/AutoC2/Powershell.sh

@@ -0,0 +1,11 @@
+echo "Creating Powershell Resources"
+mkdir /opt/Powershell >/dev/null 2>&1
+echo ""
+echo "Cloning PowerSploit"
+echo ""
+cd /opt/Powershell
+git clone https://github.com/PowerShellMafia/PowerSploit.git
+echo""
+echo "Cloning PowerSCCM"
+echo ""
+git clone https://github.com/PowerShellMafia/PowerSCCM.git

+ 46 - 0
AutoC2/AutoC2/Priv_Esc.sh

@@ -0,0 +1,46 @@
+echo "Installing Privilege Escalation Resources"
+echo ""
+mkdir /opt/Windows_OS >/dev/null 2>&1
+cd /opt/Windows_OS/
+mkdir Privilege_Escalation >/dev/null 2>&1
+cd Privilege_Escalation/
+echo ""
+echo "Installing ElevateKit"
+echo ""
+sleep 2
+git clone https://github.com/rsmudge/ElevateKit.git
+echo ""
+echo "Cloning Watson"
+echo ""
+sleep 2
+git clone https://github.com/rasta-mouse/Watson.git
+echo ""
+echo "Cloning SharpUp"
+echo ""
+sleep 2
+git clone https://github.com/GhostPack/SharpUp.git
+echo ""
+echo "Cloning dazzleUp"
+echo ""
+sleep 2
+git clone https://github.com/hlldz/dazzleUP.git
+echo ""
+echo "Cloning PEASS-ng"
+echo ""
+sleep 2
+git clone https://github.com/carlospolop/PEASS-ng.git
+echo ""
+echo "Cloning SweetPotato"
+echo ""
+sleep 2
+git clone https://github.com/CCob/SweetPotato.git
+echo ""
+echo "Cloning MultiPotato"
+echo ""
+git clone https://github.com/S3cur3Th1sSh1t/MultiPotato.git
+echo ""
+sleep 2
+echo "Cloning SharpEFSPotato"
+echo ""
+git clone https://github.com/bugch3ck/SharpEfsPotato.git
+echo ""

+ 246 - 0
AutoC2/AutoC2/Recon.sh

@@ -0,0 +1,246 @@
+apt-get update -y && apt-get upgrade -y 
+apt update -y && apt upgrade -y
+apt autoremove -y
+echo ""
+sleep 2
+echo "Installing System Dependencies"
+echo ""
+sleep 2
+apt --fix-broken install
+apt install git -y
+apt --fix-broken install
+apt install net-tools -y 
+apt install gparted -y
+apt install php-curl -y 
+apt install php-xml -y
+apt install docker -y
+apt install docker.io -y 
+apt install ruby-bundler -y 
+apt install golang -y
+apt install python-pip -y 
+apt install python3 -y 
+apt install make -y 
+apt install snap -y 
+apt install fuse -y
+apt install ruby-bundler -y 
+apt install pipx -y 
+apt install chromium-browser -y 
+apt install dnsmasq -y 
+apt install hostapd -y 
+apt install openssl -y 
+apt install open-vm-tools-desktop -y
+apt install build-essential -y
+apt install libpcap-dev -y
+apt install terminator -y
+apt install macchanger -y
+apt install dhcpd -y
+apt install lighttpd -y
+apt install mdk4 -y
+apt install dsniff -y
+apt install mdk3 -y
+apt install php-cgi -y
+ap install xterm -y
+apt install tshark -y
+apt --fix-broken install
+cd /opt
+mkdir Recon >/dev/null 2>&1
+mkdir Windows_OS >/dev/null 2>&1
+echo""
+echo "Installing Recon Resources"
+echo""
+sleep 2
+cd /opt/Recon/
+echo""
+echo "Installing Nmap, Dirb, GoBuster & wfuzz"
+echo ""
+apt install nmap -y
+apt install dirb -y
+apt install wfuzz -y
+apt install gobuster -y
+echo "Installing Nikto & WPScan"
+echo ""
+apt install nikto -y
+apt install wpscan -y 
+echo ""
+echo "Installing Recon-NG"
+apt install recon-ng -y
+echo ""
+echo "Installing RustScan"
+echo""
+sleep 2
+git clone https://github.com/RustScan/RustScan.git
+cd RustScan.git
+docker build -t rustscan .
+cd /opt/Recon/
+echo "Installing GitLeaks"
+echo ""
+sleep 2
+git clone https://github.com/zricethezav/gitleaks.git
+cd gitleaks/
+make build
+echo ""
+cd /opt/Windows_OS/
+cd Recon/
+echo "Installing MFA Sweep"
+echo ""
+sleep 2
+git clone https://github.com/dafthack/MFASweep 
+cd /opt/Recon/
+echo "Installing S3Scanner"
+echo ""
+sleep 2
+git clone https://github.com/sa7mon/S3Scanner.git
+cd S3Scanner/
+pip3 install -r requirements.txt
+python3 -m S3Scanner
+cd /opt/Recon/
+echo""
+echo "Installing Enum4Linux"
+cd /opt/Recon/
+echo ""
+sleep 2
+git clone https://github.com/CiscoCXSecurity/enum4linux.git
+echo "alias enum4linux='/opt/enum4linux/./enum4linux.pl'" >> /root/.bashrc
+echo ""
+echo "Installing Cloud_Enum"
+echo""
+sleep 2
+git clone https://github.com/initstring/cloud_enum.git
+cd cloud_enum
+pip3 install -r ./requirements.txt
+cd /opt/Recon/
+echo ""
+echo "Installing WitnessMe"
+echo ""
+sleep 2
+python3 -m pip install --user pipx
+pipx install witnessme
+pipx ensurepath
+cd /opt/Recon/
+echo ""
+echo "Installing Pagodo"
+echo ""
+sleep 2
+git clone https://github.com/opsdisk/pagodo.git
+cd pagodo
+pip install -r requirements.txt
+cd /opt/Recon/
+echo ""
+echo "Installing AttackSurfaceMapper"
+echo""
+sleep 2
+git clone https://github.com/superhedgy/AttackSurfaceMapper.git
+cd AttackSurfaceMapper
+python3 -m pip install --no-cache-dir -r requirements.txt
+cd /opt/Recon/
+echo ""
+echo "Installing SpiderFoot"
+echo ""
+sleep 2
+git clone https://github.com/smicallef/spiderfoot.git
+cd spiderfoot
+pip3 install -r requirements.txt
+pip3 install cherrypy
+pip3 install cherrypy_cors
+pip3 install publicsuffixlist
+pip3 install networkx
+pip3 install openpyxl
+cd /opt/Recon/
+echo""
+echo "Installing DNScan"
+echo ""
+sleep 2
+git clone https://github.com/rbsec/dnscan.git
+cd dnscan
+pip3 install -r requirements.txt
+pip3 install setuptools
+cd /opt/Recon/
+echo""
+echo "Installing SpoofCheck"
+echo""
+sleep 2
+git clone https://github.com/BishopFox/spoofcheck.git
+cd spoofcheck
+pip3 install -r requirements.txt
+cd /opt/Recon/
+echo ""
+echo "Installing LinkedInt"
+echo""
+sleep 2
+git clone https://github.com/vysecurity/LinkedInt.git
+cd LinkedInt
+pip3 install -r requirements.txt
+cd /opt/Recon/
+echo ""
+echo "Installing EyeWitness"
+echo ""
+sleep 2
+git clone https://github.com/ChrisTruncer/EyeWitness.git
+cd EyeWitness/Python/setup
+bash setup.sh
+cd /opt/Recon/
+echo""
+echo "Installing Aquatone"
+echo ""
+sleep 2
+mkdir Aquatone
+cd Aquatone/
+wget https://github.com/michenriksen/aquatone/releases/download/v1.7.0/aquatone_linux_amd64_1.7.0.zip
+unzip aquatone_linux_amd64_1.7.0.zip
+cd /opt/Recon/
+echo""
+echo "Installing DNSrecon"
+echo ""
+sleep 2
+git clone https://github.com/darkoperator/dnsrecon.git
+cd dnsrecon
+pip install -r requirements.txt
+python setup.py install
+cd /opt/Recon/
+echo ""
+echo "Installing Social Mapper"
+echo ""
+sleep 2
+git clone https://github.com/SpiderLabs/social_mapper.git
+cd /social_mapper/setup/
+pip install -r requirements.txt
+echo""
+cd /opt/Recon/
+echo "Installing theHarvester"
+echo ""
+sleep 2
+git clone https://github.com/laramies/theHarvester.git
+cd theHarvester/
+pip3 install aiohttp
+pip3 install aiomultiprocess
+python3 -m pip install -r requirements/base.txt
+python3 setup.py install
+cd /opt/Recon/
+echo ""
+echo "Installing Metagoofil"
+echo ""
+sleep 2
+git clone https://github.com/laramies/metagoofil.git
+echo""
+echo "Installing TruffleHog"
+echo ""
+sleep 2
+git clone https://github.com/dxa4481/truffleHog.git
+cd trufflehog; go install
+cd /opt/Recon/
+echo""
+echo "Installing Pwned0rNot -- API KEY REQUIRE"
+git clone https://github.com/thewhiteh4t/pwnedOrNot.git
+cd pwnedOrNot
+chmod +x install.sh
+./install.sh
+cd /opt/Recon/
+echo""
+echo "Installing GitHarvester"
+echo ""
+sleep 2
+git clone https://github.com/metac0rtex/GitHarvester.git
+echo ""
+echo "Cloning Initial Access Resources"
+echo ""
+sleep 2

+ 99 - 0
AutoC2/AutoC2/Situational_Awareness.sh

@@ -0,0 +1,99 @@
+mkdir /opt/Windows_OS >/dev/null 2>&1
+cd /opt/Windows_OS
+mkdir Situational_Awareness >/dev/null 2>&1
+cd Situational_Awareness/
+echo ""
+echo "Installing AggressiveProxy"
+echo ""
+sleep 2
+git clone https://github.com/EncodeGroup/AggressiveProxy.git
+echo ""
+echo "Installing Gopher"
+echo ""
+sleep 2
+git clone https://github.com/EncodeGroup/Gopher.git
+echo ""
+echo "Installing SharpEDRChecker"
+echo ""
+sleep 2
+git clone https://github.com/PwnDexter/SharpEDRChecker.git
+echo ""
+echo "Installing CS-Situational-Awareness-BOF"
+echo ""
+sleep 2
+git clone https://github.com/trustedsec/CS-Situational-Awareness-BOF.git
+echo ""
+echo "Installing Seatbelt"
+echo ""
+sleep 2
+git clone https://github.com/GhostPack/Seatbelt.git
+echo ""
+echo "Installing SauronEye"
+echo ""
+sleep 2
+git clone https://github.com/vivami/SauronEye.git
+echo ""
+echo "Installing SharpShares"
+echo ""
+sleep 2
+git clone https://github.com/mitchmoser/SharpShares.git
+echo ""
+echo "Installing SharpAppLocker"
+echo ""
+sleep 2
+git clone https://github.com/Flangvik/SharpAppLocker/.git
+echo ""
+echo "Installing SharpPrinter"
+echo ""
+sleep 2
+git clone https://github.com/rvrsh3ll/SharpPrinter.git
+echo ""
+echo "Installing Standin"
+echo ""
+git clone https://github.com/FuzzySecurity/StandIn.git
+echo ""
+echo "Installing Recon-AD"
+echo ""
+sleep 2
+git clone https://github.com/outflanknl/Recon-AD.git
+echo ""
+echo "Cloning BloodHound For Windows"
+echo ""
+sleep 2
+git clone https://github.com/BloodHoundAD/BloodHound.git
+echo ""
+echo "Installing PSPKIAudit"
+echo ""
+sleep 2
+git clone https://github.com/GhostPack/PSPKIAudit.git
+echo ""
+echo "Installing SharpView"
+echo ""
+sleep 2
+git clone https://github.com/tevora-threat/SharpView.git
+echo ""
+echo "Installing Rubeus"
+echo ""
+sleep 2
+git clone https://github.com/GhostPack/Rubeus.git
+echo ""
+echo "Installing Grouper"
+echo ""
+sleep 2
+git clone https://github.com/l0ss/Grouper.git
+echo ""
+echo "Installing ImproHound"
+echo ""
+sleep 2
+git clone https://github.com/improsec/ImproHound.git
+echo ""
+echo "Installing ADRecon"
+echo ""
+sleep 2
+git clone https://github.com/adrecon/ADRecon.git
+echo ""
+echo "Installing ADCSPwn"
+echo ""
+sleep2
+git clone https://github.com/bats3c/ADCSPwn.git
+echo ""

+ 20 - 0
AutoC2/AutoC2/Social.sh

@@ -0,0 +1,20 @@
+echo ""
+echo "Cloning Social Engineering Resources"
+echo ""
+sleep 2
+mkdir /opt/Social_Engineering >/dev/null 2>&1
+cd /opt/Social_Engineering
+echo ""
+echo "Installing Social Engineering Toolkit"
+echo ""
+sleep 2
+git clone https://github.com/trustedsec/social-engineer-toolkit.git
+cd social-engineering-toolkit/
+python3 setup.py install
+cd /opt/Social_Engineering/
+echo ""
+echo "Installing Social Engineering Payloads"
+echo ""
+sleep 2
+git clone https://github.com/bhdresh/SocialEngineeringPayloads.git
+

+ 70 - 0
AutoC2/AutoC2/Staging.sh

@@ -0,0 +1,70 @@
+echo "Cloning Staging Resources"
+echo ""
+mkdir /opt/Staging >/dev/null 2>&1
+mkdir /opt/Windows_OS >/dev/null 2>&1
+cd /opt/Staging/
+echo""
+echo "Installing PwnDrop"
+git clone https://github.com/kgretzky/pwndrop.git
+cd pwndrop/
+go build
+cd /opt/Staging
+echo ""
+echo "Installing C2 Concealer"
+echo ""
+sleep 2
+git clone https://github.com/FortyNorthSecurity/C2concealer.git
+cd C2concealer/
+bash install.sh
+cd /opt/Staging/
+echo ""
+echo "Installing FindFrontableDomains"
+echo ""
+sleep 2
+git clone https://github.com/rvrsh3ll/FindFrontableDomains.git
+cd FindFrontableDomains/
+bash install.sh
+echo ""
+echo "Installing DomainHunter"
+echo ""
+cd /opt/Staging/
+sleep 2
+git clone https://github.com/threatexpress/domainhunter.git
+cd domainhunter/
+pip3 install -r requirements.txt
+echo ""
+cd /opt/Staging/
+echo "Installing RedWarden"
+echo ""
+sleep 2
+git clone https://github.com/mgeeky/RedWarden.git
+cd RedWarden/
+pip3 install -r requirements.txt
+cd /opt/Staging/
+echo ""
+echo "Installing AzureC2Relay"
+echo ""
+sleep 2
+git clone https://github.com/Flangvik/AzureC2Relay.git
+echo ""
+echo "Installing C3"
+echo ""
+sleep 2
+cd /opt/Windows_OS
+git clone https://github.com/FSecureLABS/C3.git
+echo ""
+cd /opt/Staging/
+echo "Installing Chameleon"
+echo ""
+sleep 2
+git clone https://github.com/mdsecactivebreach/Chameleon.git
+cd Chameleon/
+pip3 install -r requirements.txt
+cd /opt/Staging/
+echo ""
+echo "Installing Redirect Rules"
+echo ""
+sleep 2
+git clone https://github.com/0xZDH/redirect.rules.git 
+cd redirect.rules/
+bash setup.sh

+ 26 - 0
AutoC2/AutoC2/VM.sh

@@ -0,0 +1,26 @@
+mkdir /opt/Virtual_Machines >/dev/null 2>&1
+cd /opt/Virtual_Machines
+echo "Installing VirtualBox"
+echo ""
+sleep 3
+apt-get update -y && apt-get upgrade -y
+apt --fix-broken install -y
+wget https://download.virtualbox.org/virtualbox/6.1.38/Oracle_VM_VirtualBox_Extension_Pack-6.1.38.vbox-extpack
+wget https://download.virtualbox.org/virtualbox/6.1.38/virtualbox-6.1_6.1.38-153438~Ubuntu~jammy_amd64.deb
+apt --fix-broken install -y
+dpkg --install virtualbox-6.1_6.1.34-150636.1~Ubuntu~eoan_amd64.deb
+echo""
+echo "Downloading Kali VM"
+echo ""
+wget https://kali.download/virtual-images/kali-2022.3/kali-linux-2022.3-virtualbox-amd64.7z
+echo ""
+echo "Downloading Windows ISO (Build The Box Yourself And Activate With MassGrave Activation"
+echo ""
+sleep 2
+wget https://pixeldrain.com/api/file/yKpSj3P7?download
+echo ""
+echo "Cloning MassGrave's Windows Activation Scripts'"
+git clone https://github.com/massgravel/Microsoft-Activation-Scripts.git
+sleep 2 
+echo ""
+apt --fix-broken install -y

+ 22 - 0
AutoC2/AutoC2/Web.sh

@@ -0,0 +1,22 @@
+echo ""
+echo "Cloning Web Resources"
+echo ""
+sleep 2 
+mkdir /opt/Web >/dev/null 2>&1
+cd /opt/Web/
+git clone https://github.com/rastating/wordpress-exploit-framework
+apt-get install ruby-dev zlib1g-dev liblzma-dev libsqlite3-dev -y
+apt-get install build-essential patch -y
+cd wordpress-exploit-framework/
+./rebuild_and_install_gem.sh
+cd /opt/Web/
+echo "Installing RED HAWK Framework"
+echo ""
+sleep 2
+git clone https://github.com/Tuhinshubhra/RED_HAWK
+cd RED_HAWK
+apt-get update -y && apt-get upgrade -y
+apt --fix-broken install -y
+apt install php -y
+cd /opt/Web 
+mv containerd /opt/Web

+ 71 - 0
AutoC2/AutoC2/Wireless.sh

@@ -0,0 +1,71 @@
+echo ""
+echo "Cloning Wireless Resources"
+echo ""
+mkdir /opt/Wireless >/dev/null 2>&1
+cd /opt/Wireless/
+
+apt install wifite -y
+apt install aircrack-ng -y
+echo ""
+echo "Installing BeRateAP"
+echo ""
+sleep 2
+git clone https://github.com/sensepost/berate_ap
+echo ""
+cd /opt/Wireless/
+echo "Installing EvilTwin Capitive Portal"
+echo ""
+sleep 2
+git clone https://github.com/athanstan/EvilTwin_AP_CaptivePortal.git
+echo ""
+cd /opt/Wireless/
+echo "Installing Fluxion"
+echo ""
+sleep 2
+git clone https://www.github.com/FluxionNetwork/fluxion.git
+echo ""
+echo "Installing Bettercap"
+echo ""
+sleep 2
+git clone https://github.com/bettercap/bettercap
+cd bettercap/
+bash build.sh
+echo ""
+echo "Installing Airgeddon"
+echo ""
+sleep 2
+git clone https://github.com/v1s1t0r1sh3r3/airgeddon.git
+echo ""
+cd /opt/Wireless/
+echo "Installing HCXTools"
+echo ""
+sleep 2
+git clone https://github.com/ZerBea/hcxtools
+cd hcxtools/
+make && make install
+echo "Installing HCX Dump Tool"
+cd /opt/Wireless/
+git clone https://github.com/ZerBea/hcxdumptool
+cd hcxdumptool/
+make && make install
+cd /opt/Wireless/
+echo "Installing Bully"
+echo ""
+sleep 2
+git clone https://github.com/aanarchyy/bully
+cd bully/src
+make && make install
+cd /opt/Wireless/
+echo "Installing EapHammer"
+echo ""
+sleep 2
+git clone https://github.com/s0lst1c3/eaphammer.git
+cd eaphammer/
+./kali-setup
+cd /opt/Wireless
+mkdir Wireless_Drivers  >/dev/null 2>&1
+cd Wireless_Drivers/
+apt install dkms -y
+git clone https://github.com/aircrack-ng/rtl8812au
+cd rtl8812au/
+make && make install

+ 10 - 0
AutoC2/AutoC2/Wordlists.sh

@@ -0,0 +1,10 @@
+echo "Installing Wordlists & Rule Sets"
+sleep 3
+echo ""
+mkdir /opt/Wordlists/ >/dev/null 2>&1
+cd /opt/Wordlists/
+git clone https://github.com/NotSoSecure/password_cracking_rules.git
+git clone https://github.com/praetorian-inc/Hob0Rules.git
+git clone https://github.com/danielmiessler/SecLists.git
+wget https://raw.githubusercontent.com/praetorian-inc/Hob0Rules/master/wordlists/rockyou.txt.gz
+echo""