1、下载安装 curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && chmod 755 msfinstall && ./msfinstall
安装完成后
msf使用的是postgresql数据库,如果没有的话需要先安装
sudo apt install postgresql
安装完成之后确认下服务是否开启,如果没有开启它
sudo service postgresql status
最后输入msfconsole
2、添加新用户运行msf adduser msf
#添加msf用户 su msf
选取默认值也可自定义
#切换到msf用户 cd /opt/metasploit-framework/bin
#切换到msf所在的目录 ./msfconsole
#以后启动msfconsole,都切换到msf用户下启动,这样会同步数据库。 如果使用root用户启动的话,不会同步数据库! (启动索引已经默认配好了!) 直接 msfconsole 就可以启动了!
通过vim编辑器打开hosts
sudo vim /etc/hosts
在hosts里面添加下列内容:
199.232.28.133 raw.githubusercontent.com
做完以后再次重复上面的造作