meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
windows:metasploitable3 [2026/06/08 22:14] – removed - external edit (Unknown date) 127.0.0.1windows:metasploitable3 [2026/06/08 22:14] (current) – ↷ Page moved from os:windows:metasploitable3 to windows:metasploitable3 kilroy
Line 1: Line 1:
 +[[https://github.com/rapid7/metasploitable3]]
 +[[https://chocolatey.org/install]]
 +[[https://www.vagrantup.com/downloads]]
 +[[https://learn.hashicorp.com/packer]]
  
 +
 +<code>
 +Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
 +
 +vagrant plugin install vagrant-vmware-desktop
 +vagrant plugin install vagrant-reload
 +
 +mkdir metasploitable3-workspace
 +cd metasploitable3-workspace
 +Invoke-WebRequest -Uri "https://raw.githubusercontent.com/rapid7/metasploitable3/master/Vagrantfile" -OutFile "Vagrantfile"
 +vagrant up --provider=vmware_desktop
 +
 +</code>