Learn Penetration Testing with Metasploitable3
Metasploitable3 is a free virtual machine that allows you to simulate attacks largely using Metasploit. It has been used by people in the security industry for a variety of reasons: such as training for network exploitation, exploit development, software testing, technical job interviews, sales demonstrations, or CTF junkies who are looking for kicks, etc 🙂
How to build
System Requirements:
- OS capable of running all of the required applications listed below
- VT-x/AMD-V Supported Processor recommended
- 65 GB Available space on drive
- 4.5 GB RAM
Requirements:
- Packer
- Vagrant NOTE: Currently 1.9.1 is recommended as there are build issues with newer versions.
- Vagrant Reload Plugin
- VirtualBox
- Internet connection
To build automatically:
- Run the build_win2008.sh script if using bash, or build_win2008.ps1 if using Windows.
- If the command completes successfully, run ‘vagrant up’.
- When this process completes, you should be able to open the VM within VirtualBox and login. The default credentials are U: vagrant and P: vagrant.
To build manually:
- Clone this repo and navigate to the main directory.
- Build the base VM image by running
packer build --only=<provider> windows_2008_r2.json
where<provider>
is your preferred virtualization platform. Currentlyvirtualbox-iso
andvmware-iso
are supported. This will take a while the first time you run it since it has to download the OS installation ISO. - After the base Vagrant box is created you need to add it to your Vagrant environment. This can be done with the command
vagrant box add windows_2008_r2_<provider>.box --name=metasploitable3
. - Use
vagrant plugin install vagrant-reload
to install the reload vagrant provisioner if you haven’t already. - To start the VM, run the command
vagrant up
. This will start up the VM and run all of the installation and configuration scripts necessary to set everything up. This takes about 10 minutes. - Once this process completes, you can open up the VM within VirtualBox and login. The default credentials are U: vagrant and P: vagrant.
If you failed to build Metasploitable3, you can download Metasploitable3 here. I built for you.
Tutorial
https://www.youtube.com/playlist?list=PLTsHz_e2nqNn1upfDTQslznMmM2qNtRXu
Reference: rapid7