Fixing repo
This commit is contained in:
parent
170d7f6a2e
commit
853b67c796
|
|
@ -28,8 +28,6 @@ EOF
|
||||||
# ------------------------------------------------------------------------
|
# ------------------------------------------------------------------------
|
||||||
|
|
||||||
sudo ufw limit 22/tcp
|
sudo ufw limit 22/tcp
|
||||||
sudo ufw allow 80/tcp
|
|
||||||
sudo ufw allow 443/tcp
|
|
||||||
sudo ufw default deny incoming
|
sudo ufw default deny incoming
|
||||||
sudo ufw default allow outgoing
|
sudo ufw default allow outgoing
|
||||||
|
|
||||||
|
|
@ -56,7 +54,7 @@ sudo cp fail2ban.local /etc/fail2ban/
|
||||||
echo -e "\nEnabling essential services"
|
echo -e "\nEnabling essential services"
|
||||||
|
|
||||||
systemctl enable cups.service
|
systemctl enable cups.service
|
||||||
#sudo ntpd -qg
|
sudo ntpd -qg
|
||||||
sudo systemctl enable ntpd.service
|
sudo systemctl enable ntpd.service
|
||||||
sudo systemctl disable dhcpcd.service
|
sudo systemctl disable dhcpcd.service
|
||||||
sudo systemctl stop dhcpcd.service
|
sudo systemctl stop dhcpcd.service
|
||||||
|
|
|
||||||
|
|
@ -15,17 +15,11 @@ echo -e "\nFINAL SETUP AND CONFIGURATION\n"
|
||||||
|
|
||||||
ehco -e"\nInstalling black arch repository\n"
|
ehco -e"\nInstalling black arch repository\n"
|
||||||
|
|
||||||
#mkdir $HOME/blackarch
|
mkdir $HOME/blackarch
|
||||||
#cp /root/BetterArch/dotfiles/blackarch/strap.sh $HOME/blackarch
|
cp /root/BetterArch/dotfiles/blackarch/strap.sh $HOME/blackarch
|
||||||
#cd $HOME/blackarch
|
cd $HOME/blackarch
|
||||||
#chmod +x strap.sh
|
chmod +x strap.sh
|
||||||
#sudo pacman -Syu
|
sudo pacman -Syu
|
||||||
|
|
||||||
mkdir blackman
|
|
||||||
cd blackman
|
|
||||||
wget https://raw.github.com/BlackArch/blackarch/master/packages/blackman/PKGBUILD
|
|
||||||
makepkg -s
|
|
||||||
|
|
||||||
|
|
||||||
PKGS=(
|
PKGS=(
|
||||||
'3proxy'
|
'3proxy'
|
||||||
|
|
@ -64,33 +58,33 @@ for PKG in "${PKGS[@]}"; do
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
echo -e "\nInstalling git repositories\n"
|
#echo -e "\nInstalling git repositories\n"
|
||||||
mkdir $HOME/git
|
#mkdir $HOME/git
|
||||||
cd $HOME/git
|
#cd $HOME/git
|
||||||
git clone https://github.com/six2dez/reconftw.git
|
#git clone https://github.com/six2dez/reconftw.git
|
||||||
cd reconftw/
|
#cd reconftw/
|
||||||
./install.sh
|
#./install.sh
|
||||||
|
|
||||||
cd $HOME/git
|
#cd $HOME/git
|
||||||
git clone https://github.com/codingo/Reconnoitre.git
|
#git clone https://github.com/codingo/Reconnoitre.git
|
||||||
python3 setup.py install
|
#python3 setup.py install
|
||||||
|
|
||||||
cd $HOME/git
|
#cd $HOME/git
|
||||||
git clone https://github.com/AlisamTechnology/ATSCAN
|
#git clone https://github.com/AlisamTechnology/ATSCAN
|
||||||
chmod +x ./install.sh
|
#chmod +x ./install.sh
|
||||||
./install.sh
|
#./install.sh
|
||||||
|
|
||||||
cd $HOME/git
|
#cd $HOME/git
|
||||||
git clone https://github.com/evyatarmeged/Raccoon.git
|
#git clone https://github.com/evyatarmeged/Raccoon.git
|
||||||
cd Raccoon
|
#cd Raccoon
|
||||||
python setup.py install # Subsequent changes to the source code will not be reflected in calls to raccoon when this is used
|
#python setup.py install # Subsequent changes to the source code will not be reflected in calls to raccoon when this is used
|
||||||
|
|
||||||
cd $HOME/git
|
#cd $HOME/git
|
||||||
git clone https://github.com/haad/proxychains
|
#git clone https://github.com/haad/proxychains
|
||||||
cd proxychains
|
#cd proxychains
|
||||||
./configure
|
#./configure
|
||||||
make
|
#make
|
||||||
sudo make install
|
#sudo make install
|
||||||
|
|
||||||
cd ~
|
cd ~
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue