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
542 B

  1. #!/bin/bash
  2. #
  3. echo "Cloning libitns from git.."
  4. cd ~
  5. git clone https://github.com/mfontanini/libtins.git
  6. echo "Installing requirements (libpcap, libssl, cmake, g++)"
  7. sudo apt install libpcap-dev libssl-dev cmake -y
  8. sudo apt install g++ -y
  9. echo "Compiling libtins.."
  10. cd ~/libtins
  11. mkdir -p build
  12. cd build
  13. cmake ../ -DLIBTINS_ENABLE_CXX11=1
  14. make
  15. sudo make install
  16. echo "Updating ldconfig cache.."
  17. sudo ldconfig
  18. echo "Cloning attack repo.."
  19. cd ~
  20. pwd
  21. git clone https://git.breakpointingbad.com/Breakpointing-Bad-Public/vpn-attacks.git