PostgreSQL.
5432 TCP
PostgreSQL
You can check if it is possible to log in with user “postgres” and password “” or "postgres".
“postgres”
“”
postgres
psqlarrow-up-right
psql -U <USER> -h <IP> [-p <PORT>] \q : Quit \l : List of all databases \l <DB> : Info on a single database \c <DB> : Connect to a database \dt : List all the tables \d : To view the schema of a table \du : Display user roles
psql -U <USER> -h <IP> [-p <PORT>]
\q
\l
\l <DB>
\c <DB>
\dt
\d
\du
See SQLi
Last updated 1 month ago