Posted Apr 7, 2013 13:59 UTC (Sun) by cesarb (subscriber, #6266)
[Link]
AFAIK, the authentication is per-database, which means it has to read the database name from the client before authenticating, even if you are using certificates.
The bug in question involved the client sending an invalid database name.
Oops.
A serious PostgreSQL security fix
Posted Apr 7, 2013 22:40 UTC (Sun) by hummassa (subscriber, #307)
[Link]
IIRC correctly my SSL/TLS, the authentication (and the start of encrypting the whole session) comes before anything else. I suppose when the client asks for connection to a database, he is already autheticated via his cert (and the dbms can check if he can effectively connect to *that* particular db).
A serious PostgreSQL security fix
Posted Apr 7, 2013 23:31 UTC (Sun) by dlang (✭ supporter ✭, #313)
[Link]
SSL/TLS authentication has a very high overhead. Postgresql supports SSL/TLS authentication, but it also supports many other types of authentication so that you can choose what one is the best fit for your needs.