Advertisement
efxtv

How to install Metasploitable3 using Vagrant in Ubuntu

Dec 27th, 2023
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | Cybersecurity | 0 0
  1. What is Vagrant?
  2. Vagrant is a tool for building and managing virtual machine environments in a single workflow. With an easy-to-use workflow and focus on automation, Vagrant lowers development environment setup time, increases production parity
  3.  
  4. How to install metasploiable3 in Ubuntu Vagrant CLI
  5. - Install vagrant CLI Utility
  6. wget -O- https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
  7. echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
  8. sudo apt update && sudo apt install vagrant
  9.  
  10. - Install plugins
  11. vagrant plugin install vagrant-reload
  12. vagrant up
  13. reboot
  14.  
  15. - Install metasploitable-6
  16. vagrant init rapid7/metasploitable3-win2k8
  17. vagrant up
  18.  
  19. Telegram post
  20. https://t.me/efxtv/3243
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement