zoukankan      html  css  js  c++  java
  • deepin安装metasploit

    [1]安装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                                                                //查看数据库连接状态

  • 相关阅读:
    Mysql 三大特性详解
    MySQL Innodb日志机制深入分析
    Bootstrap学习地址
    Java【锁】
    Java【tomcat】配置文件
    nginx配置文件详解【nginx.conf】
    Sqlserver2008[索引]
    网络知识
    RestClient火狐接口测试地址
    java基础1JDK各大版本下载地址
  • 原文地址:https://www.cnblogs.com/nul1/p/8455241.html
Copyright © 2011-2022 走看看