How to install Metasploit 3.3.3 in Backtrack
Can someone please shed some light on how to install the new Metasploit 3.3.3 in Backtrack. Sorry if someone has asked this before but im not getting any results when searching the forum. I am totally new to linux so sorry again if my question seems stupid to some.
Re: How to install Metasploit 3.3.3 in Backtrack
The HowTo forum is NOT the right place to post questions. There is a sticky thread in the forum that explains this if you'd care to read it.
Re: How to install Metasploit 3.3.3 in Backtrack
Sorry I'm new to the forum could you help me with my problem?
Re: How to install Metasploit 3.3.3 in Backtrack
Quote:
Originally Posted by
Subliminal
Sorry I'm new to the forum could you help me with my problem?
Metasploit is already installed in BT.
/pentest/exploits/framework3
Re: How to install Metasploit 3.3.3 in Backtrack
BackTrack includes the Metasploit Framework, but not always the latest version. To install the latest version of Metasploit in BackTrack:
$ sudo bash
# cd /pentest/svn
# rm -rf framework3
# svn co https://www.metasploit.com/svn/framework3/trunk framework3
In order to use the raw socket modules, the pcaprub extension must be installed:
# cd /pentest/svn/framework3/external/pcaprub
# ruby extconf.rb
# make && make install
In order to use the WiFi modues, the lorcon2 extension must be installed:
# cd /pentest/svn
# svn co https://802.11ninja.net/svn/lorcon/trunk lorcon2
# cd lorcon2
# ./configure --prefix=/usr && make && make install
# cd /pentest/svn/framework3/external/ruby-lorcon2
# ruby extconf.rb
# make && make install
Once a fresh Subversion snapshot has been installed, it can be updated with the following command:
# svn update /pentest/svn/framework3/
Re: How to install Metasploit 3.3.3 in Backtrack
Yeah but we are not going to really support those who do this.
The new metasploit package (which should be in the repo or will be soon) has fixed the above issue.