CVE-2026-17349 PUBLISHED

pgAdmin 4: Adhoc server clone leaks another user's stored database credentials and ownership to a non-owner

Assigner: PostgreSQL
Reserved: 25.07.2026 Published: 31.07.2026 Updated: 01.08.2026

/misc/workspace/adhoc_connect_server, part of the Workspaces feature introduced in pgAdmin 4 9.0, when passed the id of an existing server, clones that server via Server.clone(), which copies every column from the source row, including user_id, shared, shared_username, and the stored credential fields password, save_password, and tunnel_password. When a non-owner triggered an adhoc connect against another user's (in practice, typically an administrator's) shared server, the clone inherited that user's ownership, shared flag, and stored database credentials verbatim. pgAdmin persisted this cross-tenant, credential-bearing server row before the connection was even attempted, so it survived even when the connection subsequently failed. The non-owner could then open the newly-owned clone and pgAdmin would connect using the source user's stored database password on the non-owner's behalf, granting the non-owner use of database credentials -- and whatever database privileges they confer -- that were never their own.

Fix forces the cloned adhoc record's ownership fields (user_id, shared, shared_username) and stored credential fields (password, save_password, tunnel_password) to belong to the calling user and be cleared/private before committing, regardless of the source server's ownership, sharing state, or stored credentials. A regression test asserts that an adhoc connect triggered by a non-owner against another user's shared server persists a row owned by the caller, not shared, and without the source's stored credentials.

This issue affects pgAdmin 4: from 9.0 before 9.17.

Metrics

CVSS Vector: CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:N/SC:H/SI:H/SA:N
CVSS Score: 9.3

Same reasoning as the CVSS 3.1 entry: an authenticated low-privilege user obtains another user's stored database credential via server cloning, without any interaction from the victim. VC:H/VI:H for pgAdmin's own scope (the leaked credential itself); SC:H/SI:H because the credential is then usable against the underlying database server, a subsequent system whose privileges may substantially exceed the attacker's own. VA:N/SA:N since the leak alone does not cause denial of service.

Product Status

Vendor pgadmin.org
Product pgAdmin 4
Versions Default: unaffected
  • affected from 9.0 to 9.17 (excl.)

Credits

  • Ashesh Vashi <ashesh.vashi@enterprisedb.com> finder
  • Ashesh Vashi <ashesh.vashi@enterprisedb.com> remediation developer
  • Kundan Sable <kundan.sable@enterprisedb.com> remediation reviewer

References

Problem Types

  • CWE-639 Authorization Bypass Through User-Controlled Key CWE
  • CWE-522 Insufficiently Protected Credentials CWE