msf官方命令行一键安装
curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && chmod 755 msfinstall && ./msfinstall
稍微等待几分钟即可安装成功,下载好了以后,路径是在/opt/metasploit-framework/目录下
输入msfconsole
就可以直接运行了
postgresql数据库部署(以下命令按顺序执行即可)
yum -y install epel-release
# 下载仓库
yum clean all && yum makecache# 更新仓库配置
yum -y install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
#下载 rpm 软件包
yum -y install postgresql
# 安装客户端
yum -y install postgresql-server
# 安装服务端
postgresql-setup initdb
# 初始化数据库systemctl start postgresql
# 启动数据库
systemctl enable postgresql
# 数据库开机自启动useradd msf
# 创建用户 msf
su msf
# 登录 msf 账户
/opt/metasploit-framework/bin/msfdb init
# 以 msf 账户身份初始化数据库
exit
# 退出账户 msf ,回到 root 账户
cp /home/msf/.msf4/database.yml /opt/metasploit-framework/embedded/framework/config/
# 复制配置文件msfconsole
# 登录 msf 控制台
db_status
# 查看数据库连接情况
这样,msf安装及数据库连接就好了