PSQL (5432)
PostgreSQL.
Port
5432 TCP
PostgreSQL
Interact
You can check if it is possible to log in with user “postgres” and password “” or "postgres".
Tools
Details
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
Attacks
See SQLi
Last updated
Was this helpful?