Download Latest Version v42.7.13 source code.zip (3.2 MB)
Email in envelope

Get an email when there's a new version of PostgreSQL JDBC Driver

Home / REL42.7.12
Name Modified Size InfoDownloads / Week
Parent folder
postgresql-42.7.12.jar 2026-06-29 1.1 MB
README.md 2026-06-29 1.4 kB
v42.7.12_ security source code.tar.gz 2026-06-29 2.4 MB
v42.7.12_ security source code.zip 2026-06-29 3.0 MB
Totals: 4 Items   6.6 MB 0

Silent channel-binding authentication downgrade (CVE-2026-54291)

channelBinding=require connections can be silently downgraded from SCRAM-SHA-256-PLUS (with channel binding) to plain SCRAM-SHA-256 (without it), losing the man-in-the-middle protection the setting is meant to guarantee. An attacker who can intercept the TLS connection triggers the downgrade with a certificate whose signature algorithm has no tls-server-end-point channel-binding hash. Examples are Ed25519, Ed448, and post-quantum algorithms.

Two issues combine in releases 42.7.4 through 42.7.11:

The bundled com.ongres.scram:scram-client (3.1 or 3.2) returns an empty byte array instead of failing when it cannot derive the binding hash for such a certificate. This is the library issue tracked as GHSA-p9jg-fcr6-3mhf.

pgJDBC does not enforce channelBinding=require where it matters. ScramAuthenticator checks only that the server advertised a -PLUS mechanism; it neither rejects the empty binding nor checks that the negotiated mechanism uses channel binding. The connection therefore downgrades silently.

Only connections that set channelBinding=require are affected. Under the default prefer policy, and under allow or disable, falling back to plain SCRAM is the documented behaviour.

Releases before 42.7.4 are unaffected, because they do not support channel binding.

Source: README.md, updated 2026-06-29