如何在ubuntu中安装metasploit环境

发布网友 发布时间:2022-04-23 13:39

我来回答

3个回答

懂视网 时间:2022-04-09 08:33

1.1、打开终端,进入安装目录(你想放在哪就进哪

cd /opt

curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall

1.2、chmod 755 msfinstall

1.3、./msfinstall

等它自动安装完毕,然后先不要启动,目前最新版的这个msf会问你要不要用自带到database,你想用自带到数据库就回车,想用自己到数据库就输入no回车

 

2、安装postgresql

2.1、apt-get install postgresql  

2.2、su - postgres                      

2.3、psql                                   

2.4、password 123456

 

2.5、可忽略这一项,如果你喜欢用psql到话(纯命令),安装postgresql到管理工具

2.5.1、安装apache

apt-get install apache2

2.5.2、安装pgadmin

apt-get install phppgadmin

2.5.3、重启一下apache(好像也可以不用重启,我的什装好之后重启才能看到界面

/etc/init.d/apache2 restart

2.5.4、登录页面应该就可以浏览了

http://127.0.0.1/phppgadmin/

 

ubuntu16.04安装metasploit+postgresql

标签:

热心网友 时间:2022-04-09 05:41

安装metasploit
1、curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall
2、chmod 755 msfinstall
3、./msfinstall
依次执行上面的三条命令即可安装成功

2
安装postgresql数据库
安装数据库的时候会自动创建系统用户postgres,数据库用户postgres,数据库postgres
1、apt-get install postgresql //安装postgresql数据库
2、su - postgres //切换到postgres用户
3、psql //登陆postgresql数据库,首次登陆没有密码
4、\password postgres //修改数据库用户postgres的密码
3
msf使用数据库
1、msfconsole //启动msf
2、db_connect postgres:hehehe@127.0.0.1/test //用户名,密码,地址,自己随意编造的名字。
3、db_status //查看数据库连接状态

4
安装完成,可以开始你的metasploit渗透之路了!!!
5
参考:如果希望添加新的用户

建立一个普通用户
useradd -m feng //feng是我的用户名,你可以改成任意用户名。
passwd feng //设置一下新建的用户名的密码。
usermod -a -G sudo feng //修改用户的附加组为超级管理组。
chsh -s /bin/bash feng //设置用户使用的命令控制台。
6
sure : if you want to download it from "http" with thunder and so on , please open https://apt.metasploit.com/
then move to the bottom , get it !!

热心网友 时间:2022-04-09 06:59

终端下运行,运行metasploit/msf3中的msfconsole 比如:我的先是 cd /opt/metasoloit/msf3 接下来 msfconsloe

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com