VYPR

rpm package

opensuse/pgadmin4&distro=openSUSE Tumbleweed

pkg:rpm/opensuse/pgadmin4&distro=openSUSE%20Tumbleweed

Vulnerabilities (40)

  • CVE-2026-17566CriJul 31, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    pgAdmin 4's Import/Export Data tool builds a psql \copy (...) command line by interpolating a user-supplied SQL query into a Jinja template and passing the rendered line to psql via --command. To stop an attacker from breaking out of the (...) wrapper, create_import_export_job()

  • CVE-2026-17351CriJul 31, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    The fix for CVE-2026-12045 in pgAdmin 4 9.16 required the LLM-supplied query passed to the AI Assistant's execute_sql_query tool to parse, via sqlparse, as exactly one non-transaction-control statement before running it inside a BEGIN TRANSACTION READ ONLY wrapper. sqlparse's str

  • CVE-2026-17350MedJul 31, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    The per-tool permission system (custom roles / role-based tool permissions, introduced in pgAdmin 4 9.3) did not enforce its permission check consistently. In SERVER mode, pgAdmin 4 gates each tool behind a per-tool Flask-Security permission, but the permission decorator (permiss

  • CVE-2026-17349CriJul 31, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    /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 st

  • CVE-2026-17347HigJul 31, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    The MASTER_PASSWORD_HOOK setting, introduced in pgAdmin 4 7.2, lets an administrator configure an external command that returns a per-user encryption key, with %u in the configured string replaced by the current user's name. The previous implementation substituted the username di

  • CVE-2026-12050MedJun 19, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    SQL injection in pgAdmin 4's named restore point endpoint (POST /browser/server/restore_point/{gid}/{sid}). The user-supplied 'value' field was interpolated directly into the SQL string with str.format() instead of being passed as a bound parameter, allowing an authenticated pgAd

  • CVE-2026-12049MedJun 19, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    Open redirect in pgAdmin 4's multi-factor authentication flow. The MFA validate and register endpoints honoured the user-supplied 'next' query/form parameter without confirming the target pointed back inside pgAdmin, so an authenticated victim who clicked /mfa/validate?next=<exte

  • CVE-2026-12048CriJun 19, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    Stored cross-site scripting in pgAdmin 4's error-rendering and plan-node-rendering paths. Text returned by a PostgreSQL server (ErrorResponse messages, including object names quoted back inside relation-does-not-exist errors and inside EXPLAIN Recheck Cond / Exact Heap Blocks fie

  • CVE-2026-12047LowJun 19, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    HTML injection in pgAdmin 4's cloud deployment module. The verify_credentials, deploy, regions, and update-server endpoints under /rds/, /azure/, /google/, and the top-level /cloud/ blueprint propagated AWS / Azure / Google SDK exception text — and the related file-resolution and

  • CVE-2026-12046CriJun 19, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    Two state-mutating endpoints in pgAdmin 4's SQL Editor blueprint -- DELETE /sqleditor/close/<trans_id> and POST /sqleditor/initialize/sqleditor/update_connection/// -- were the only routes in the module missing the @pga_login_required decorator. Both reach a pickl

  • CVE-2026-12045CriJun 19, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    Read-only transaction bypass in the pgAdmin 4 AI Assistant allows an attacker who can influence database content that the assistant reads to execute arbitrary SQL with the privileges of the pgAdmin user's database role. The AI Assistant's execute_sql_query tool runs LLM-generate

  • CVE-2026-12044HigJun 19, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    SQL injection in pgAdmin 4 across every dialog template that renders ``COMMENT ON ... IS ''`` for a user-supplied description field. The Jinja templates for Domains (and their constraints), Foreign Tables, Languages, and Event Triggers, plus the Views OID-lookup quer

  • CVE-2026-7820MedMay 11, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    Improper restriction of excessive authentication attempts (CWE-307) in pgAdmin 4. pgAdmin enforces MAX_LOGIN_ATTEMPTS only inside its custom /authenticate/login view. Flask-Security's default /login view, which is registered automatically by security.init_app() and is reachable

  • CVE-2026-7819HigMay 11, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    Symbolic-link path traversal (CWE-61, CWE-22) in pgAdmin 4 File Manager. check_access_permission used os.path.abspath, which resolves '..' but does not resolve symbolic links, while the subsequent kernel write follows symlinks. An authenticated user could plant a symbolic link i

  • CVE-2026-7818HigMay 11, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    Deserialization of untrusted data (CWE-502) in pgAdmin 4 FileBackedSessionManager. The session manager performed unsafe deserialization of session-file contents (using Python's standard object-serialization module) before performing any HMAC integrity check. Any file dropped int

  • CVE-2026-7817MedMay 11, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    Local file inclusion (LFI) and server-side request forgery (SSRF) vulnerabilities in pgAdmin 4 LLM API configuration endpoints. User-supplied api_key_file and api_url preferences were passed to the LLM provider clients without validation. An authenticated user could read arbitra

  • CVE-2026-7816HigMay 11, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    OS command injection (CWE-78) vulnerability in pgAdmin 4 Import/Export query export. User-supplied input was interpolated directly into a psql \copy metacommand template without sanitization. An authenticated user could inject ") TO PROGRAM 'cmd'" to break out of the \copy (...)

  • CVE-2026-7815HigMay 11, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    SQL injection vulnerability in pgAdmin 4 Maintenance Tool. Four user-supplied JSON fields (buffer_usage_limit, vacuum_parallel, vacuum_index_cleanup, reindex_tablespace) were concatenated directly into the rendered VACUUM/ANALYZE/REINDEX command and passed to psql --command. An

  • CVE-2026-7814MedMay 11, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    Stored cross-site scripting (XSS) vulnerability in pgAdmin 4 Browser Tree and Explain Visualizer modules. User-controlled PostgreSQL object names (database, schema, table, column, etc.) were assigned to DOM elements via innerHTML, allowing crafted object names containing HTML ma

  • CVE-2026-7813CriMay 11, 2026
    affected < 9.17-1.1fixed 9.17-1.1

    Authorization vulnerability in pgAdmin 4 server mode affecting Server Groups, Servers, Shared Servers, Background Processes, and Debugger modules. Multiple endpoints fetched user-owned objects without filtering by the requesting user's identity. An authenticated user could acces

Page 1 of 2