Created 4-pen-tools.sh

This commit is contained in:
71Zombie 2021-10-25 10:07:08 -04:00
parent d06eb47275
commit 911d80374c
5 changed files with 62 additions and 10 deletions

View File

@ -74,7 +74,6 @@ PKGS=(
'automake' # build 'automake' # build
'base' 'base'
'bash-completion' 'bash-completion'
'bettercap' # Netorking swiss army knife
'bind' 'bind'
'binutils' 'binutils'
'bison' 'bison'
@ -136,12 +135,10 @@ PKGS=(
'lzop' 'lzop'
'm4' 'm4'
'make' 'make'
'metasploit' #Exploit
'milou' 'milou'
'nano' 'nano'
'neofetch' 'neofetch'
'networkmanager' 'networkmanager'
'nmap' #Network scanning
'ntfs-3g' 'ntfs-3g'
'okular' 'okular'
'openbsd-netcat' 'openbsd-netcat'

View File

@ -10,7 +10,6 @@
#▄████████ ▀█████▀ ▀████ ▀████ ▀█████▀████▄ ▄███▄ ▄████▄████▄ █████▀████ ████▄ #▄████████ ▀█████▀ ▀████ ▀████ ▀█████▀████▄ ▄███▄ ▄████▄████▄ █████▀████ ████▄
# #
#------------------------------------------------------------------------------------ #------------------------------------------------------------------------------------
echo -e "\nFINAL SETUP AND CONFIGURATION"
# ------------------------------------------------------------------------ # ------------------------------------------------------------------------
@ -56,8 +55,3 @@ sed -i 's/^# %wheel ALL=(ALL) ALL/%wheel ALL=(ALL) ALL/' /etc/sudoers
# Replace in the same state # Replace in the same state
cd $pwd cd $pwd
echo "
###############################################################################
# Done - Please Eject Install Media and Reboot
###############################################################################
"

59
4-pen-tools.sh Normal file
View File

@ -0,0 +1,59 @@
#!/usr/bin/env bash
#------------------------------------------------------------------------------------
# ▄▄
#▀███▀▀▀██▄ ██ ██ ██ ███
# ██ ██ ██ ██ ▄██▄ ██
# ██ ██ ▄▄█▀██████████████ ▄▄█▀██▀███▄███ ▄█▀██▄ ▀███▄███ ▄██▀██ ███████▄
# ██▀▀▀█▄▄▄█▀ ██ ██ ██ ▄█▀ ██ ██▀ ▀▀ ▄█ ▀██ ██▀ ▀▀██▀ ██ ██ ██
# ██ ▀███▀▀▀▀▀▀ ██ ██ ██▀▀▀▀▀▀ ██ ████████ ██ ██ ██ ██
# ██ ▄███▄ ▄ ██ ██ ██▄ ▄ ██ █▀ ██ ██ ██▄ ▄██ ██
#▄████████ ▀█████▀ ▀████ ▀████ ▀█████▀████▄ ▄███▄ ▄████▄████▄ █████▀████ ████▄
#
#------------------------------------------------------------------------------------
echo -e "\nFINAL SETUP AND CONFIGURATION"
echo -e "\nInstalling penetration testing tools"
PKGS=(
'airgeddon-git' # Audit wireless networks
'ba-pentest-commons-meta'
'bettercap' # Netorking swiss army knife
'metasploit' # Exploit
'nmap' # Network scanning
'sherlock-git'
)
for PKG in "${PKGS[@]}"; do
echo "INSTALLING: ${PKG}"
sudo pacman -S "$PKG" --noconfirm --needed
done
cd ~/git
echo -e "\nInstalling git repositories\n"
git clone https://github.com/six2dez/reconftw.git
cd reconftw/
./install.sh
cd ~/git
git clone https://github.com/codingo/Reconnoitre.git
python3 setup.py install
cd ~/git
git clone https://github.com/AlisamTechnology/ATSCAN
chmod +x ./install.sh
./install.sh
cd ~/git
git clone https://github.com/evyatarmeged/Raccoon.git
cd Raccoon
python setup.py install # Subsequent changes to the source code will not be reflected in calls to raccoon when this is used
echo "
###############################################################################
# Done - Please Eject Install Media and Reboot
###############################################################################
"

View File

@ -12,6 +12,7 @@ This README contains the steps I do to install and configure a fully-functional
- Fail2ban - Fail2ban
- UFW - UFW
- Portsmaster - Portsmaster
- Firejail sandboxing
_Comes preinstalled with pentesting tools_ _Comes preinstalled with pentesting tools_

View File

@ -5,3 +5,4 @@
source /mnt/root/BetterArch/install.conf source /mnt/root/BetterArch/install.conf
arch-chroot /mnt /usr/bin/runuser -u $username -- /home/$username/BetterArch/2-user.sh arch-chroot /mnt /usr/bin/runuser -u $username -- /home/$username/BetterArch/2-user.sh
arch-chroot /mnt /root/BetterArch/3-post-setup.sh arch-chroot /mnt /root/BetterArch/3-post-setup.sh
arch-chroot /mnt /root/BetterArch/4-pen-tools.sh