You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
522 B
33 lines
522 B
#!/bin/bash
|
|
#
|
|
|
|
echo "Cloning libitns from git.."
|
|
cd ~
|
|
git clone https://github.com/mfontanini/libtins.git
|
|
|
|
|
|
echo "Installing requirements (libpcap, libssl, cmake, g++)"
|
|
|
|
sudo apt install libpcap-dev libssl-dev cmake -y
|
|
sudo apt install g++ -y
|
|
|
|
|
|
echo "Compiling libtins.."
|
|
|
|
cd ~/libtins
|
|
mkdir -p build
|
|
cd build
|
|
cmake ../ -DLIBTINS_ENABLE_CXX11=1
|
|
make
|
|
|
|
sudo make install
|
|
|
|
|
|
echo "Updating ldconfig cache.."
|
|
sudo ldconfig
|
|
|
|
|
|
echo "Cloning attack repo.."
|
|
cd ~
|
|
pwd
|
|
git clone https://git.breakpointingbad.com/beau/VeepExploit.git
|