Posts

Showing posts with the label How to install metasploit on kali linux or ubuntu

How to install metasploit on kali linux or ubuntu

Image
Introduction In this blog post I will show you how to install  Metasploit framework  on kali linux or ubuntu. The Metasploit Project’s best-known creation, is a software platform for developing, testing, and executing exploits for security purpose. Installation 1 sudo apt-get update Lets download and install the framework using the command below, 1 2 3 curl https: //raw .githubusercontent.com /rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate .erb chmod 755 msfinstall . /msfinstall There will be around 170-180 Mb data downloaded, so this can take a few minutes depending on your internet speed. If you get the below error,  unable to connect to the database , this means that you don’t have postgres SQL installed. So, Let’s go ahead and install postgresql In Order to install  postgresql , use the command below, 1 2 sudo apt-get update sudo apt install postgresql postgresql-contrib Finally, after the installation is complete, ...