Metasploit支持MySQL、PostgreSQL和SQLite3数据库。默认数据库PostgreSQL。下面是PostgreSQL数据库的简单使用命令:
1.启动数据库子系统
/etc/init.d/postgresql start
2.连接数据库(创建新的数据库也是这个命令)。
db_connect postgres:[email protected]/msf
上面几个参数的意思分别是:用户名,密码,运行数据库系统的主机名,将要使用的数据库名
kali中默认的用户名是postgres,密码是toor。
3.确认数据库连接是否正确。
db_status
4.将扫描结果的xml文件导入数据库中
db_import /home/output/subnet.xml
5.删除原有数据库
db_destroy postgres:[email protected]/msf3
6.断开数据库连接:
db_disconnect postgres:[email protected]/msf