美文网首页
ubuntu16下安装metasploit的笔记

ubuntu16下安装metasploit的笔记

作者: 一点也不想吃辣 | 来源:发表于2017-09-02 15:05 被阅读38次

    官方提供了这样一条命令:

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

    真的不需要sudo,然而还是报错了。
    bash: msfinstall: Permission denied

    解决办法:

    cd /opt
    sudo wget https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb
    mv msfupdate.erb msfinstall
    sudo mv msfupdate.erb msfinstall
    sudo chmod 755 msfinstall
    ./msfinstall
    msfconsole 
    

    快速的完成了metasploit的安装。
    另:最近kali更新以后,总是有故障,于是,选择基于ubuntu直接安装工具来用。

    相关文章

      网友评论

          本文标题:ubuntu16下安装metasploit的笔记

          本文链接:https://www.haomeiwen.com/subject/bfhrjxtx.html