Advertisement
pablopc

Yersinia Tool Install in Kali Linux

Apr 16th, 2024
587
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.44 KB | Cybersecurity | 0 0
  1. #!/bin/bash
  2. # Script to download & compile yersinia tool in Kali Linux
  3.  
  4. [[ -$UID ne 0 ]] && echo "Run this script as root" && exit 0
  5. git clone https://github.com/tomac/yersinia /opt/yersinia
  6. chmod -R u+w /opt/yersinia
  7. cd /opt/yersinia
  8. apt install -y autoconf libgtk-3-dev libnet1-dev libgtk2.0-dev libpcap-dev
  9. ./autogen.sh
  10. ./configure --with-gtk
  11. make
  12. make install
  13. echo
  14. echo
  15. echo "Ahora ejecuta el siguiente comando:"
  16. echo "yersinia -G"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement