{"url":"http://public2.vulnerablecode.io/api/vulnerabilities/15570?format=json","vulnerability_id":"VCID-6r4u-tem9-vkey","summary":"org.postgresql:postgresql vulnerable to SQL Injection via line comment generation\n# Impact\nSQL injection is possible when using the non-default connection property `preferQueryMode=simple` in combination with application code that has a vulnerable SQL that negates a parameter value.\n\nThere is no vulnerability in the driver when using the default query mode. Users that do not override the query mode are not impacted.\n\n# Exploitation\n\nTo exploit this behavior the following conditions must be met:\n\n1. A placeholder for a numeric value must be immediately preceded by a minus (i.e. `-`)\n1. There must be a second placeholder for a string value after the first placeholder on the same line. \n1. Both parameters must be user controlled.\n\nThe prior behavior of the driver when operating in simple query mode would inline the negative value of the first parameter and cause the resulting line to be treated as a `--` SQL comment. That would extend to the beginning of the next parameter and cause the quoting of that parameter to be consumed by the comment line. If that string parameter includes a newline, the resulting text would appear unescaped in the resulting SQL.\n\nWhen operating in the default extended query mode this would not be an issue as the parameter values are sent separately to the server. Only in simple query mode the parameter values are inlined into the executed SQL causing this issue.\n\n# Example\n\n```java\nPreparedStatement stmt = conn.prepareStatement(\"SELECT -?, ?\");\nstmt.setInt(1, -1);\nstmt.setString(2, \"\\nWHERE false --\");\nResultSet rs = stmt.executeQuery();\n```\n\nThe resulting SQL when operating in simple query mode would be:\n\n```sql\nSELECT --1,'\nWHERE false --'\n```\n\nThe contents of the second parameter get injected into the command. Note how both the number of result columns and the WHERE clause of the command have changed. A more elaborate example could execute arbitrary other SQL commands.\n\n# Patch\nProblem will be patched upgrade to 42.7.2, 42.6.1, 42.5.5, 42.4.4, 42.3.9, 42.2.28, 42.2.28.jre7\n\nThe patch fixes the inlining of parameters by forcing them all to be serialized as wrapped literals. The SQL in the prior example would be transformed into:\n\n```sql\nSELECT -('-1'::int4), ('\nWHERE false --')\n```\n\n# Workarounds\nDo not use the connection property`preferQueryMode=simple`. (*NOTE: If you do not explicitly specify a query mode then you are using the default of `extended` and are not impacted by this issue.*)","aliases":[{"alias":"CVE-2024-1597"},{"alias":"GHSA-24rp-q3w6-vc56"}],"fixed_packages":[{"url":"http://public2.vulnerablecode.io/api/packages/394617?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=armv7&distroversion=v3.20&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=armv7&distroversion=v3.20&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/394619?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=riscv64&distroversion=v3.20&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=riscv64&distroversion=v3.20&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/394620?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=s390x&distroversion=v3.20&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=s390x&distroversion=v3.20&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/394621?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=x86&distroversion=v3.20&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=x86&distroversion=v3.20&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/404078?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=armhf&distroversion=v3.19&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=armhf&distroversion=v3.19&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/404081?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=s390x&distroversion=v3.19&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=s390x&distroversion=v3.19&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/404083?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=x86_64&distroversion=v3.19&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=x86_64&distroversion=v3.19&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/534499?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=armhf&distroversion=v3.22&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=armhf&distroversion=v3.22&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/534501?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=loongarch64&distroversion=v3.22&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=loongarch64&distroversion=v3.22&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/534502?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=ppc64le&distroversion=v3.22&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=ppc64le&distroversion=v3.22&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/534503?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=riscv64&distroversion=v3.22&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=riscv64&distroversion=v3.22&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/534505?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=x86&distroversion=v3.22&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=x86&distroversion=v3.22&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/534506?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=x86_64&distroversion=v3.22&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=x86_64&distroversion=v3.22&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/543809?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=aarch64&distroversion=edge&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=aarch64&distroversion=edge&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/543810?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=armhf&distroversion=edge&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=armhf&distroversion=edge&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/543813?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=ppc64le&distroversion=edge&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=ppc64le&distroversion=edge&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/543816?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=x86&distroversion=edge&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=x86&distroversion=edge&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/543817?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=x86_64&distroversion=edge&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=x86_64&distroversion=edge&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/962339?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=armhf&distroversion=v3.23&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=armhf&distroversion=v3.23&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/962341?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=loongarch64&distroversion=v3.23&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=loongarch64&distroversion=v3.23&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/962342?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=ppc64le&distroversion=v3.23&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=ppc64le&distroversion=v3.23&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/962344?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=s390x&distroversion=v3.23&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=s390x&distroversion=v3.23&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/1020493?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=armhf&distroversion=v3.21&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=armhf&distroversion=v3.21&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/1020497?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=riscv64&distroversion=v3.21&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=riscv64&distroversion=v3.21&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/1020500?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=x86_64&distroversion=v3.21&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=x86_64&distroversion=v3.21&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/394615?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=aarch64&distroversion=v3.20&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=aarch64&distroversion=v3.20&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/394616?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=armhf&distroversion=v3.20&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=armhf&distroversion=v3.20&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/394618?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=ppc64le&distroversion=v3.20&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=ppc64le&distroversion=v3.20&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/394622?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=x86_64&distroversion=v3.20&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=x86_64&distroversion=v3.20&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/404077?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=aarch64&distroversion=v3.19&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=aarch64&distroversion=v3.19&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/404079?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=armv7&distroversion=v3.19&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=armv7&distroversion=v3.19&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/404080?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=ppc64le&distroversion=v3.19&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=ppc64le&distroversion=v3.19&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/404082?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=x86&distroversion=v3.19&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=x86&distroversion=v3.19&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/534498?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=aarch64&distroversion=v3.22&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=aarch64&distroversion=v3.22&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/534500?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=armv7&distroversion=v3.22&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=armv7&distroversion=v3.22&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/534504?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=s390x&distroversion=v3.22&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=s390x&distroversion=v3.22&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/543811?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=armv7&distroversion=edge&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=armv7&distroversion=edge&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/543812?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=loongarch64&distroversion=edge&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=loongarch64&distroversion=edge&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/543814?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=riscv64&distroversion=edge&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=riscv64&distroversion=edge&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/543815?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=s390x&distroversion=edge&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=s390x&distroversion=edge&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/962338?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=aarch64&distroversion=v3.23&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=aarch64&distroversion=v3.23&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/962340?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=armv7&distroversion=v3.23&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=armv7&distroversion=v3.23&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/962343?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=riscv64&distroversion=v3.23&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=riscv64&distroversion=v3.23&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/962345?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=x86&distroversion=v3.23&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=x86&distroversion=v3.23&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/962346?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=x86_64&distroversion=v3.23&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=x86_64&distroversion=v3.23&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/1020492?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=aarch64&distroversion=v3.21&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=aarch64&distroversion=v3.21&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/1020494?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=armv7&distroversion=v3.21&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=armv7&distroversion=v3.21&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/1020495?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=loongarch64&distroversion=v3.21&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=loongarch64&distroversion=v3.21&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/1020496?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=ppc64le&distroversion=v3.21&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=ppc64le&distroversion=v3.21&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/1020499?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=x86&distroversion=v3.21&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=x86&distroversion=v3.21&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/1020498?format=json","purl":"pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0?arch=s390x&distroversion=v3.21&reponame=community","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:apk/alpine/java-postgresql-jdbc@42.6.2-r0%3Farch=s390x&distroversion=v3.21&reponame=community"},{"url":"http://public2.vulnerablecode.io/api/packages/928176?format=json","purl":"pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-hada-xkcc-8fch"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.15-1%252Bdeb11u1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/928184?format=json","purl":"pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u2?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.15-1%252Bdeb11u2%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/1049755?format=json","purl":"pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-hada-xkcc-8fch"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.5.5-0%252Bdeb12u1"},{"url":"http://public2.vulnerablecode.io/api/packages/928174?format=json","purl":"pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-hada-xkcc-8fch"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.5.5-0%252Bdeb12u1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/928186?format=json","purl":"pkg:deb/debian/libpgjava@42.7.2-1?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.2-1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/928178?format=json","purl":"pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-hada-xkcc-8fch"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.7-1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/928177?format=json","purl":"pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-hada-xkcc-8fch"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.10-1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/1088697?format=json","purl":"pkg:deb/debian/libpgjava@42.7.11-1?distro=trixie","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.11-1%3Fdistro=trixie"},{"url":"http://public2.vulnerablecode.io/api/packages/54693?format=json","purl":"pkg:maven/org.postgresql/postgresql@42.2.28","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-uzj4-puvz-zfgh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/org.postgresql/postgresql@42.2.28"},{"url":"http://public2.vulnerablecode.io/api/packages/52735?format=json","purl":"pkg:maven/org.postgresql/postgresql@42.3.9","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/org.postgresql/postgresql@42.3.9"},{"url":"http://public2.vulnerablecode.io/api/packages/52734?format=json","purl":"pkg:maven/org.postgresql/postgresql@42.4.4","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/org.postgresql/postgresql@42.4.4"},{"url":"http://public2.vulnerablecode.io/api/packages/52729?format=json","purl":"pkg:maven/org.postgresql/postgresql@42.5.5","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/org.postgresql/postgresql@42.5.5"},{"url":"http://public2.vulnerablecode.io/api/packages/52724?format=json","purl":"pkg:maven/org.postgresql/postgresql@42.6.1","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/org.postgresql/postgresql@42.6.1"},{"url":"http://public2.vulnerablecode.io/api/packages/52718?format=json","purl":"pkg:maven/org.postgresql/postgresql@42.7.2","is_vulnerable":false,"affected_by_vulnerabilities":[],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/org.postgresql/postgresql@42.7.2"}],"affected_packages":[{"url":"http://public2.vulnerablecode.io/api/packages/1037881?format=json","purl":"pkg:deb/debian/libpgjava@6.3.2-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-6z5w-j6xv-fffz"},{"vulnerability":"VCID-7p16-8nb5-kucz"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-vdtn-ek54-nqh6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@6.3.2-1"},{"url":"http://public2.vulnerablecode.io/api/packages/1037882?format=json","purl":"pkg:deb/debian/libpgjava@6.3.2-2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-6z5w-j6xv-fffz"},{"vulnerability":"VCID-7p16-8nb5-kucz"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-vdtn-ek54-nqh6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@6.3.2-2"},{"url":"http://public2.vulnerablecode.io/api/packages/1037883?format=json","purl":"pkg:deb/debian/libpgjava@6.5.3-2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-6z5w-j6xv-fffz"},{"vulnerability":"VCID-7p16-8nb5-kucz"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-vdtn-ek54-nqh6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@6.5.3-2"},{"url":"http://public2.vulnerablecode.io/api/packages/1037884?format=json","purl":"pkg:deb/debian/libpgjava@7.2-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-6z5w-j6xv-fffz"},{"vulnerability":"VCID-7p16-8nb5-kucz"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-vdtn-ek54-nqh6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@7.2-1"},{"url":"http://public2.vulnerablecode.io/api/packages/1037885?format=json","purl":"pkg:deb/debian/libpgjava@7.4.7-3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-6z5w-j6xv-fffz"},{"vulnerability":"VCID-7p16-8nb5-kucz"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-vdtn-ek54-nqh6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@7.4.7-3"},{"url":"http://public2.vulnerablecode.io/api/packages/1037886?format=json","purl":"pkg:deb/debian/libpgjava@8.1-405-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-6z5w-j6xv-fffz"},{"vulnerability":"VCID-7p16-8nb5-kucz"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-vdtn-ek54-nqh6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@8.1-405-1"},{"url":"http://public2.vulnerablecode.io/api/packages/1037887?format=json","purl":"pkg:deb/debian/libpgjava@8.2-504-2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-6z5w-j6xv-fffz"},{"vulnerability":"VCID-7p16-8nb5-kucz"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-vdtn-ek54-nqh6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@8.2-504-2"},{"url":"http://public2.vulnerablecode.io/api/packages/1037888?format=json","purl":"pkg:deb/debian/libpgjava@8.4-701-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-6z5w-j6xv-fffz"},{"vulnerability":"VCID-7p16-8nb5-kucz"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-vdtn-ek54-nqh6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@8.4-701-1"},{"url":"http://public2.vulnerablecode.io/api/packages/1037889?format=json","purl":"pkg:deb/debian/libpgjava@9.1-901-2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-6z5w-j6xv-fffz"},{"vulnerability":"VCID-7p16-8nb5-kucz"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-vdtn-ek54-nqh6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@9.1-901-2"},{"url":"http://public2.vulnerablecode.io/api/packages/1037890?format=json","purl":"pkg:deb/debian/libpgjava@9.2-1002-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-6z5w-j6xv-fffz"},{"vulnerability":"VCID-7p16-8nb5-kucz"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-vdtn-ek54-nqh6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@9.2-1002-1"},{"url":"http://public2.vulnerablecode.io/api/packages/1037891?format=json","purl":"pkg:deb/debian/libpgjava@9.4.1212-1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-6z5w-j6xv-fffz"},{"vulnerability":"VCID-7p16-8nb5-kucz"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-vdtn-ek54-nqh6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@9.4.1212-1"},{"url":"http://public2.vulnerablecode.io/api/packages/1037892?format=json","purl":"pkg:deb/debian/libpgjava@42.2.5-2%2Bdeb10u1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-7p16-8nb5-kucz"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-vdtn-ek54-nqh6"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.5-2%252Bdeb10u1"},{"url":"http://public2.vulnerablecode.io/api/packages/1049754?format=json","purl":"pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hada-xkcc-8fch"},{"vulnerability":"VCID-qub7-qp14-uqcg"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.15-1%252Bdeb11u1"},{"url":"http://public2.vulnerablecode.io/api/packages/44718?format=json","purl":"pkg:maven/org.postgresql/postgresql@42.3.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-7p16-8nb5-kucz"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-hpc5-vtmd-gub5"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-rwwd-8qgf-f3ac"},{"vulnerability":"VCID-uzj4-puvz-zfgh"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/org.postgresql/postgresql@42.3.0"},{"url":"http://public2.vulnerablecode.io/api/packages/144311?format=json","purl":"pkg:maven/org.postgresql/postgresql@42.4.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-ba8g-gn36-7bdp"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-rwwd-8qgf-f3ac"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/org.postgresql/postgresql@42.4.0"},{"url":"http://public2.vulnerablecode.io/api/packages/144825?format=json","purl":"pkg:maven/org.postgresql/postgresql@42.5.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-qub7-qp14-uqcg"},{"vulnerability":"VCID-rwwd-8qgf-f3ac"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/org.postgresql/postgresql@42.5.0"},{"url":"http://public2.vulnerablecode.io/api/packages/145034?format=json","purl":"pkg:maven/org.postgresql/postgresql@42.6.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-rwwd-8qgf-f3ac"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/org.postgresql/postgresql@42.6.0"},{"url":"http://public2.vulnerablecode.io/api/packages/145035?format=json","purl":"pkg:maven/org.postgresql/postgresql@42.7.0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"},{"vulnerability":"VCID-rwwd-8qgf-f3ac"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:maven/org.postgresql/postgresql@42.7.0"},{"url":"http://public2.vulnerablecode.io/api/packages/94117?format=json","purl":"pkg:rpm/redhat/postgresql-jdbc@42.2.3-5?arch=el8_2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/postgresql-jdbc@42.2.3-5%3Farch=el8_2"},{"url":"http://public2.vulnerablecode.io/api/packages/94116?format=json","purl":"pkg:rpm/redhat/postgresql-jdbc@42.2.3-5?arch=el8_6","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/postgresql-jdbc@42.2.3-5%3Farch=el8_6"},{"url":"http://public2.vulnerablecode.io/api/packages/94113?format=json","purl":"pkg:rpm/redhat/postgresql-jdbc@42.2.3-7?arch=el8_4","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/postgresql-jdbc@42.2.3-7%3Farch=el8_4"},{"url":"http://public2.vulnerablecode.io/api/packages/94114?format=json","purl":"pkg:rpm/redhat/postgresql-jdbc@42.2.14-3?arch=el8_9","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/postgresql-jdbc@42.2.14-3%3Farch=el8_9"},{"url":"http://public2.vulnerablecode.io/api/packages/94118?format=json","purl":"pkg:rpm/redhat/postgresql-jdbc@42.2.14-5?arch=el8_8","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/postgresql-jdbc@42.2.14-5%3Farch=el8_8"},{"url":"http://public2.vulnerablecode.io/api/packages/94115?format=json","purl":"pkg:rpm/redhat/postgresql-jdbc@42.2.28-1?arch=el9_0","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/postgresql-jdbc@42.2.28-1%3Farch=el9_0"},{"url":"http://public2.vulnerablecode.io/api/packages/94120?format=json","purl":"pkg:rpm/redhat/postgresql-jdbc@42.2.28-1?arch=el9_2","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/postgresql-jdbc@42.2.28-1%3Farch=el9_2"},{"url":"http://public2.vulnerablecode.io/api/packages/94119?format=json","purl":"pkg:rpm/redhat/postgresql-jdbc@42.2.28-1?arch=el9_3","is_vulnerable":true,"affected_by_vulnerabilities":[{"vulnerability":"VCID-6r4u-tem9-vkey"}],"resource_url":"http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/postgresql-jdbc@42.2.28-1%3Farch=el9_3"}],"references":[{"reference_url":"https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2024-1597.json","reference_id":"","reference_type":"","scores":[{"value":"9.8","scoring_system":"cvssv3","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}],"url":"https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2024-1597.json"},{"reference_url":"https://api.first.org/data/v1/epss?cve=CVE-2024-1597","reference_id":"","reference_type":"","scores":[{"value":"0.00476","scoring_system":"epss","scoring_elements":"0.65036","published_at":"2026-05-14T12:55:00Z"},{"value":"0.00476","scoring_system":"epss","scoring_elements":"0.64979","published_at":"2026-05-12T12:55:00Z"},{"value":"0.00476","scoring_system":"epss","scoring_elements":"0.64825","published_at":"2026-04-02T12:55:00Z"},{"value":"0.00476","scoring_system":"epss","scoring_elements":"0.64853","published_at":"2026-04-04T12:55:00Z"},{"value":"0.00476","scoring_system":"epss","scoring_elements":"0.64959","published_at":"2026-05-11T12:55:00Z"},{"value":"0.00476","scoring_system":"epss","scoring_elements":"0.64989","published_at":"2026-05-09T12:55:00Z"},{"value":"0.00476","scoring_system":"epss","scoring_elements":"0.64888","published_at":"2026-04-12T12:55:00Z"},{"value":"0.00476","scoring_system":"epss","scoring_elements":"0.64815","published_at":"2026-04-07T12:55:00Z"},{"value":"0.00476","scoring_system":"epss","scoring_elements":"0.64865","published_at":"2026-04-08T12:55:00Z"},{"value":"0.00476","scoring_system":"epss","scoring_elements":"0.65046","published_at":"2026-05-15T12:55:00Z"},{"value":"0.00476","scoring_system":"epss","scoring_elements":"0.64897","published_at":"2026-04-11T12:55:00Z"},{"value":"0.00476","scoring_system":"epss","scoring_elements":"0.6488","published_at":"2026-04-09T12:55:00Z"},{"value":"0.00508","scoring_system":"epss","scoring_elements":"0.66364","published_at":"2026-05-05T12:55:00Z"},{"value":"0.00508","scoring_system":"epss","scoring_elements":"0.66409","published_at":"2026-05-07T12:55:00Z"},{"value":"0.00508","scoring_system":"epss","scoring_elements":"0.66389","published_at":"2026-04-29T12:55:00Z"},{"value":"0.00508","scoring_system":"epss","scoring_elements":"0.66374","published_at":"2026-04-24T12:55:00Z"},{"value":"0.00508","scoring_system":"epss","scoring_elements":"0.66351","published_at":"2026-04-21T12:55:00Z"},{"value":"0.00508","scoring_system":"epss","scoring_elements":"0.66366","published_at":"2026-04-18T12:55:00Z"},{"value":"0.00508","scoring_system":"epss","scoring_elements":"0.6635","published_at":"2026-04-16T12:55:00Z"},{"value":"0.00508","scoring_system":"epss","scoring_elements":"0.66315","published_at":"2026-04-13T12:55:00Z"}],"url":"https://api.first.org/data/v1/epss?cve=CVE-2024-1597"},{"reference_url":"https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-1597","reference_id":"","reference_type":"","scores":[],"url":"https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-1597"},{"reference_url":"https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml","reference_id":"","reference_type":"","scores":[{"value":"9.8","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}],"url":"https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml"},{"reference_url":"https://github.com/pgjdbc/pgjdbc","reference_id":"","reference_type":"","scores":[{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://github.com/pgjdbc/pgjdbc"},{"reference_url":"https://github.com/pgjdbc/pgjdbc/commit/06abfb78a627277a580d4df825f210e96a4e14ee","reference_id":"","reference_type":"","scores":[{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://github.com/pgjdbc/pgjdbc/commit/06abfb78a627277a580d4df825f210e96a4e14ee"},{"reference_url":"https://github.com/pgjdbc/pgjdbc/commit/93b0fcb2711d9c1e3a2a03134369738a02a58b40","reference_id":"","reference_type":"","scores":[{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://github.com/pgjdbc/pgjdbc/commit/93b0fcb2711d9c1e3a2a03134369738a02a58b40"},{"reference_url":"https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-24rp-q3w6-vc56","reference_id":"","reference_type":"","scores":[{"value":"10","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"CRITICAL","scoring_system":"cvssv3.1_qr","scoring_elements":""},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:T/P:M/B:A/M:M/D:R/2024-04-10T04:00:36Z/"}],"url":"https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-24rp-q3w6-vc56"},{"reference_url":"https://nvd.nist.gov/vuln/detail/CVE-2024-1597","reference_id":"","reference_type":"","scores":[{"value":"10.0","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"CRITICAL","scoring_system":"generic_textual","scoring_elements":""}],"url":"https://nvd.nist.gov/vuln/detail/CVE-2024-1597"},{"reference_url":"https://www.enterprisedb.com/docs/jdbc_connector/latest/01_jdbc_rel_notes/","reference_id":"01_jdbc_rel_notes","reference_type":"","scores":[{"value":"10","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:T/P:M/B:A/M:M/D:R/2024-04-10T04:00:36Z/"}],"url":"https://www.enterprisedb.com/docs/jdbc_connector/latest/01_jdbc_rel_notes/"},{"reference_url":"https://bugzilla.redhat.com/show_bug.cgi?id=2266523","reference_id":"2266523","reference_type":"","scores":[],"url":"https://bugzilla.redhat.com/show_bug.cgi?id=2266523"},{"reference_url":"https://www.enterprisedb.com/docs/security/assessments/cve-2024-1597/","reference_id":"cve-2024-1597","reference_type":"","scores":[{"value":"10","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:T/P:M/B:A/M:M/D:R/2024-04-10T04:00:36Z/"}],"url":"https://www.enterprisedb.com/docs/security/assessments/cve-2024-1597/"},{"reference_url":"https://github.com/advisories/GHSA-24rp-q3w6-vc56","reference_id":"GHSA-24rp-q3w6-vc56","reference_type":"","scores":[{"value":"CRITICAL","scoring_system":"cvssv3.1_qr","scoring_elements":""}],"url":"https://github.com/advisories/GHSA-24rp-q3w6-vc56"},{"reference_url":"https://security.netapp.com/advisory/ntap-20240419-0008/","reference_id":"ntap-20240419-0008","reference_type":"","scores":[{"value":"10","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:T/P:M/B:A/M:M/D:R/2024-04-10T04:00:36Z/"}],"url":"https://security.netapp.com/advisory/ntap-20240419-0008/"},{"reference_url":"https://access.redhat.com/errata/RHSA-2024:1435","reference_id":"RHSA-2024:1435","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2024:1435"},{"reference_url":"https://access.redhat.com/errata/RHSA-2024:1436","reference_id":"RHSA-2024:1436","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2024:1436"},{"reference_url":"https://access.redhat.com/errata/RHSA-2024:1649","reference_id":"RHSA-2024:1649","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2024:1649"},{"reference_url":"https://access.redhat.com/errata/RHSA-2024:1686","reference_id":"RHSA-2024:1686","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2024:1686"},{"reference_url":"https://access.redhat.com/errata/RHSA-2024:1797","reference_id":"RHSA-2024:1797","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2024:1797"},{"reference_url":"https://access.redhat.com/errata/RHSA-2024:1999","reference_id":"RHSA-2024:1999","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2024:1999"},{"reference_url":"https://access.redhat.com/errata/RHSA-2024:2624","reference_id":"RHSA-2024:2624","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2024:2624"},{"reference_url":"https://access.redhat.com/errata/RHSA-2024:3313","reference_id":"RHSA-2024:3313","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2024:3313"},{"reference_url":"https://access.redhat.com/errata/RHSA-2024:4375","reference_id":"RHSA-2024:4375","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2024:4375"},{"reference_url":"https://access.redhat.com/errata/RHSA-2024:4402","reference_id":"RHSA-2024:4402","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2024:4402"},{"reference_url":"https://access.redhat.com/errata/RHSA-2024:5056","reference_id":"RHSA-2024:5056","reference_type":"","scores":[],"url":"https://access.redhat.com/errata/RHSA-2024:5056"},{"reference_url":"https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TZQTSMESZD2RJ5XBPSXH3TIQVUW5DIUU/","reference_id":"TZQTSMESZD2RJ5XBPSXH3TIQVUW5DIUU","reference_type":"","scores":[{"value":"10","scoring_system":"cvssv3.1","scoring_elements":"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H"},{"value":"Track*","scoring_system":"ssvc","scoring_elements":"SSVCv2/E:P/A:Y/T:T/P:M/B:A/M:M/D:R/2024-04-10T04:00:36Z/"}],"url":"https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TZQTSMESZD2RJ5XBPSXH3TIQVUW5DIUU/"}],"weaknesses":[{"cwe_id":89,"name":"Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')","description":"The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component."}],"exploits":[],"severity_range_score":"9.0 - 10.0","exploitability":"0.5","weighted_severity":"9.0","risk_score":4.5,"resource_url":"http://public2.vulnerablecode.io/vulnerabilities/VCID-6r4u-tem9-vkey"}