metasploit连接postgresql数据库

前端之家收集整理的这篇文章主要介绍了metasploit连接postgresql数据库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Metasploit 连接postgresql数据库

1.打开postgresql服务:services postgresql start

2.进入postgresql中,设置默认用户密码、创建新用户、设置新用户权限、创建数据库

sudo -u postgres psql#进入postgresql默认的用户

alter user postgres with password '密码'; #设置默认用户登录密码

create user '用户名' wiht password '密码' nocreatedb; #创建带密码的新用户

create database '数据库名' with owner = '用户名'; #创建数据库并指定数据库的所属用户

\q

3.进入Metasploit,连接数据库

msfconsole

db_status#查看数据库的状态

db_connect 用户名:密码@主机地址\数据库

db_status#检查是否开启成功



为什么要连接postgresql

连接数据库之后搜索msf中模块的速度可以大大提高;

连接数据库之后,使用msf的痕迹会被保存下来,方便之后导出编写渗透测试报告

原文链接:https://www.f2er.com/postgresql/193676.html

猜你在找的Postgre SQL相关文章