Metasploit控制台连接postgresql数据库问题
1.提示端口错误。
BT5R3上默认安装的postgresql监听端口是7337。
解决方法:
①db_connect postgres:toor@127.0.0.1:7337/msfbook
②修改/opt/metasploit/postgresql/data/postgres.conf中port = 5432
2.提示密码错误。
本人未找到默认用户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检查,提示正常。
上一篇: 在Nginx浏览器中打开目录浏览功能
下一篇: 分享最新版 nginx内置变量 大全