在BT5R3平台上,针对Metasploit控制台,使用db_connect postgres:toor@127.0.0.1/msfbook连接postgresql报错解决方法:
BT5R3上默认安装的postgresql监听端口是7337。
解决方法:
①db_connect postgres:toor@127.0.0.1:7337/msfbook
②修改/opt/Metasploit/postgresql/data/postgres.conf中port = 5432
本人未找到默认用户postgres的密码,因此采用如下方法破解。
修改/opt/Metasploit/postgresql/data/pg_hba.conf
# "local" is for Unix domain socket connections only
local all all trust
# IPv4 local connections:
host all all 127.0.0.1/32 trust
# IPv6 local connections:
host all all ::1/128 trust
把md5方式修改为trust后,重启postgresq数据库,使用postgres无需密码即可登录。
3.提示ENCODING错误。
使用UTF8编码新建数据库。
createdb msfbook -E UTF8 -T templat0
此时,敲入db_connect postgres@127.0.0.1/msfbook会有一堆创建数据表的语句输出,表明执行无问题。使用db_status检查,提示正常。
原文链接:https://www.f2er.com/postgresql/196279.html