一些好的神器就是在windows下用的不爽,所以hacker往往想喜欢在linux下使用。但是在linux下使用,集成的系统都是些bt5,kali,backbox,这些都有桌面环境,在虚拟机里跑起来也是比较的费劲。好在今天要安装的这三个神器都是命令下用起来最舒服,最爽,最cool的。
再原因,centos是很多人用来搭建linux服务器的。centos6.5 mini版,纯命令行。所以我索性把这些神器就安装在centos上,省的要安装两个linux。并且mini版的centos,因为纯命令行,体积小,运行快。不废话了。开始介绍怎么安装吧。
首先
本人使用vbox,镜像:centos6.5 mini
[Bash shell] 纯文本查看 复制代码 ifup eth0 //centos有个特性不会自动开启网卡,需要ifup来开启网卡。
我们先更新系统一下吧。
[Bash shell] 纯文本查看 复制代码 yum update
yum upgrade
1.我们先来安装sqlmap
如果没python环境就需要自己安装python,
[Bash shell] 纯文本查看 复制代码 yum install python //默认带有python2.7
git clone [url]http://github.com/sqlmapproject/sqlmap.git[/url]
这是下载在当前目录下。如果有需要下载到特定目录下
[Bash shell] 纯文本查看 复制代码 git clone [url]http://github.com/sqlmapproject/sqlmap.git[/url] /user/local/share/
照理类推。
使用sqlmap
[Bash shell] 纯文本查看 复制代码
cd sqlmap
./sqlmap.py
or
[Bash shell] 纯文本查看 复制代码 python /sqlmap/sqlmap.py
2.安装nmap
[Bash shell] 纯文本查看 复制代码
cd /usr/src
svn co [url]http://svn.nmap.org/nmap[/url]
cd nmap
./configure
make
make install
make clean
安装完以后,nmap -xx 运行。
3.接下来是最麻烦的metasploit
首先你要先安装Postgre SQL Server
[Bash shell] 纯文本查看 复制代码 yum install postgresql
yum update
yum install postgresql92-server postgresql92-devel postgresql92
启动postgresql服务
[Bash shell] 纯文本查看 复制代码 service postgresql-9.2 initdb
service postgresql-9.2 start
chkconfig postgresql-9.2 on
接着下载metasploit
[Bash shell] 纯文本查看 复制代码 cd /opt
wget [url]http://downloads.metasploit.com/data/releases/metasploit-latest-linux-installer.run[/url]
chmod 777 metasploit-latest-linux-installer.run
./metasploit-latest-linux-installer.run(因为是yum系列下,所以默认是root,Ubuntu下是 sudo ./XXXX)
基本上都是默认,无需更改。
enter一直敲下去,需要的 地方就Y。
最后
[Bash shell] 纯文本查看 复制代码 msfconsole(有点慢,可能是在虚拟机的缘故。要个1分钟不到点。)
or
sudo msfconsole(ubuntu下)
成功了。
截图一张。
|