Ubuntu16.04安装Nessus和MSF

一、Nessus篇:

1、参考文献:https://www.cnblogs.com/shamojituan/p/6511208.html

2、下载地址:https://downloads.nessus.org/nessus3dl.php?file=Nessus-6.11.2-ubuntu1110_amd64.deb&licence_accept=yes&t=1473861c4201f142f2bb82690e2c98ce

3、安装过程:

1 root@hostname#mkdir /home/username/nessus
2 root@hostname#cd /home/username/nessus
3 root@hostname:/home/username/nessus# dpkg -i Nessus-6.11.2-ubuntu1110_amd64.deb
4 root@hostname:/home/username/nessus#systemctl enable nessusd.service
5 root@hostname:/home/username/nessus#systemctl start nessusd.service
6 root@hostname:/home/username/nessus#/opt/nessus/sbin/nessuscli fetch --register 1158-71CC-BCA2-7B2E-57C7
7 root@hostname:/home/username/nessus#systemctl restart nessusd.service

然后进入web页面配置开始扫描即可

二、MSF篇

1、参考文献:https://www.cnblogs.com/proby/p/5593452.html

2、安装过程:

1 curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall
2 chmod 755 msfinstall
3 ./msfinstall
原文地址:https://www.cnblogs.com/KevinGeorge/p/7924276.html