Created 4-pen-tools.sh
This commit is contained in:
parent
d06eb47275
commit
911d80374c
|
|
@ -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'
|
||||||
|
|
|
||||||
|
|
@ -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
|
|
||||||
###############################################################################
|
|
||||||
"
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
###############################################################################
|
||||||
|
"
|
||||||
|
|
@ -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_
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
Loading…
Reference in New Issue