Lookup for vulnerable packages by Package URL.

Purlpkg:deb/debian/libpgjava@42.7.11-1?distro=trixie
Typedeb
Namespacedebian
Namelibpgjava
Version42.7.11-1
Qualifiers
distro trixie
Subpath
Is_vulnerablefalse
Next_non_vulnerable_versionnull
Latest_non_vulnerable_versionnull
Affected_by_vulnerabilities
Fixing_vulnerabilities
0
url VCID-6r4u-tem9-vkey
vulnerability_id VCID-6r4u-tem9-vkey
summary
org.postgresql:postgresql vulnerable to SQL Injection via line comment generation
# Impact
SQL 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.

There is no vulnerability in the driver when using the default query mode. Users that do not override the query mode are not impacted.

# Exploitation

To exploit this behavior the following conditions must be met:

1. A placeholder for a numeric value must be immediately preceded by a minus (i.e. `-`)
1. There must be a second placeholder for a string value after the first placeholder on the same line. 
1. Both parameters must be user controlled.

The 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.

When 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.

# Example

```java
PreparedStatement stmt = conn.prepareStatement("SELECT -?, ?");
stmt.setInt(1, -1);
stmt.setString(2, "\nWHERE false --");
ResultSet rs = stmt.executeQuery();
```

The resulting SQL when operating in simple query mode would be:

```sql
SELECT --1,'
WHERE false --'
```

The 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.

# Patch
Problem 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

The 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:

```sql
SELECT -('-1'::int4), ('
WHERE false --')
```

# Workarounds
Do 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.*)
references
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2024-1597.json
reference_id
reference_type
scores
0
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
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2024-1597
reference_id
reference_type
scores
0
value 0.00476
scoring_system epss
scoring_elements 0.6488
published_at 2026-04-09T12:55:00Z
1
value 0.00476
scoring_system epss
scoring_elements 0.64825
published_at 2026-04-02T12:55:00Z
2
value 0.00476
scoring_system epss
scoring_elements 0.64853
published_at 2026-04-04T12:55:00Z
3
value 0.00476
scoring_system epss
scoring_elements 0.64815
published_at 2026-04-07T12:55:00Z
4
value 0.00476
scoring_system epss
scoring_elements 0.64888
published_at 2026-04-12T12:55:00Z
5
value 0.00476
scoring_system epss
scoring_elements 0.64865
published_at 2026-04-08T12:55:00Z
6
value 0.00476
scoring_system epss
scoring_elements 0.64897
published_at 2026-04-11T12:55:00Z
7
value 0.00508
scoring_system epss
scoring_elements 0.66374
published_at 2026-04-24T12:55:00Z
8
value 0.00508
scoring_system epss
scoring_elements 0.66351
published_at 2026-04-21T12:55:00Z
9
value 0.00508
scoring_system epss
scoring_elements 0.66389
published_at 2026-04-29T12:55:00Z
10
value 0.00508
scoring_system epss
scoring_elements 0.66366
published_at 2026-04-18T12:55:00Z
11
value 0.00508
scoring_system epss
scoring_elements 0.6635
published_at 2026-04-16T12:55:00Z
12
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
2
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
3
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
reference_id
reference_type
scores
0
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
4
reference_url https://github.com/pgjdbc/pgjdbc
reference_id
reference_type
scores
0
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
1
value CRITICAL
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc
5
reference_url https://github.com/pgjdbc/pgjdbc/commit/06abfb78a627277a580d4df825f210e96a4e14ee
reference_id
reference_type
scores
0
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
1
value CRITICAL
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc/commit/06abfb78a627277a580d4df825f210e96a4e14ee
6
reference_url https://github.com/pgjdbc/pgjdbc/commit/93b0fcb2711d9c1e3a2a03134369738a02a58b40
reference_id
reference_type
scores
0
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
1
value CRITICAL
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc/commit/93b0fcb2711d9c1e3a2a03134369738a02a58b40
7
reference_url https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-24rp-q3w6-vc56
reference_id
reference_type
scores
0
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
1
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
2
value CRITICAL
scoring_system cvssv3.1_qr
scoring_elements
3
value CRITICAL
scoring_system generic_textual
scoring_elements
4
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
8
reference_url https://nvd.nist.gov/vuln/detail/CVE-2024-1597
reference_id
reference_type
scores
0
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
1
value CRITICAL
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2024-1597
9
reference_url https://www.enterprisedb.com/docs/jdbc_connector/latest/01_jdbc_rel_notes/
reference_id 01_jdbc_rel_notes
reference_type
scores
0
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
1
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/
10
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
11
reference_url https://www.enterprisedb.com/docs/security/assessments/cve-2024-1597/
reference_id cve-2024-1597
reference_type
scores
0
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
1
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/
12
reference_url https://github.com/advisories/GHSA-24rp-q3w6-vc56
reference_id GHSA-24rp-q3w6-vc56
reference_type
scores
0
value CRITICAL
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-24rp-q3w6-vc56
13
reference_url https://security.netapp.com/advisory/ntap-20240419-0008/
reference_id ntap-20240419-0008
reference_type
scores
0
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
1
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/
14
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
15
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
16
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
17
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
18
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
19
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
20
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
21
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
22
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
23
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
24
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
25
reference_url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/TZQTSMESZD2RJ5XBPSXH3TIQVUW5DIUU/
reference_id TZQTSMESZD2RJ5XBPSXH3TIQVUW5DIUU
reference_type
scores
0
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
1
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/
fixed_packages
0
url pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.15-1%252Bdeb11u1%3Fdistro=trixie
1
url pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u2?distro=trixie
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
2
url pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.5.5-0%252Bdeb12u1%3Fdistro=trixie
3
url pkg:deb/debian/libpgjava@42.7.2-1?distro=trixie
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
4
url pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.7-1%3Fdistro=trixie
5
url pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.10-1%3Fdistro=trixie
6
url pkg:deb/debian/libpgjava@42.7.11-1?distro=trixie
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
aliases CVE-2024-1597, GHSA-24rp-q3w6-vc56
risk_score 4.5
exploitability 0.5
weighted_severity 9.0
resource_url http://public2.vulnerablecode.io/vulnerabilities/VCID-6r4u-tem9-vkey
1
url VCID-6z5w-j6xv-fffz
vulnerability_id VCID-6z5w-j6xv-fffz
summary A weakness was found in postgresql-jdbc before version 42.2.5. It was possible to provide an SSL Factory and not check the host name if a host name verifier was not provided to the driver. This could lead to a condition where a man-in-the-middle attacker could masquerade as a trusted server by providing a certificate for the wrong host, as long as it was signed by a trusted CA.
references
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-10936.json
reference_id
reference_type
scores
0
value 8.1
scoring_system cvssv3
scoring_elements CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2018-10936.json
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2018-10936
reference_id
reference_type
scores
0
value 0.00846
scoring_system epss
scoring_elements 0.74902
published_at 2026-04-29T12:55:00Z
1
value 0.00846
scoring_system epss
scoring_elements 0.74851
published_at 2026-04-11T12:55:00Z
2
value 0.00846
scoring_system epss
scoring_elements 0.7483
published_at 2026-04-12T12:55:00Z
3
value 0.00846
scoring_system epss
scoring_elements 0.74821
published_at 2026-04-13T12:55:00Z
4
value 0.00846
scoring_system epss
scoring_elements 0.74857
published_at 2026-04-16T12:55:00Z
5
value 0.00846
scoring_system epss
scoring_elements 0.74864
published_at 2026-04-18T12:55:00Z
6
value 0.00846
scoring_system epss
scoring_elements 0.74855
published_at 2026-04-21T12:55:00Z
7
value 0.00846
scoring_system epss
scoring_elements 0.74891
published_at 2026-04-24T12:55:00Z
8
value 0.00846
scoring_system epss
scoring_elements 0.74898
published_at 2026-04-26T12:55:00Z
9
value 0.00846
scoring_system epss
scoring_elements 0.74777
published_at 2026-04-01T12:55:00Z
10
value 0.00846
scoring_system epss
scoring_elements 0.74779
published_at 2026-04-02T12:55:00Z
11
value 0.00846
scoring_system epss
scoring_elements 0.74807
published_at 2026-04-04T12:55:00Z
12
value 0.00846
scoring_system epss
scoring_elements 0.7478
published_at 2026-04-07T12:55:00Z
13
value 0.00846
scoring_system epss
scoring_elements 0.74813
published_at 2026-04-08T12:55:00Z
14
value 0.00846
scoring_system epss
scoring_elements 0.74827
published_at 2026-04-09T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2018-10936
2
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2018-10936
reference_id
reference_type
scores
0
value MODERATE
scoring_system generic_textual
scoring_elements
url https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2018-10936
3
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-10936
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-10936
4
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
reference_id
reference_type
scores
0
value 8.1
scoring_system cvssv3
scoring_elements CVSS:3.0/AV:N/AC:H/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
5
reference_url https://github.com/pgjdbc/pgjdbc/commit/cdeeaca47dc3bc6f727c79a582c9e4123099526e
reference_id
reference_type
scores
url https://github.com/pgjdbc/pgjdbc/commit/cdeeaca47dc3bc6f727c79a582c9e4123099526e
6
reference_url https://lists.apache.org/thread.html/9317fd092b257a0815434b116a8af8daea6e920b6673f4fd5583d5fe@%3Ccommits.druid.apache.org%3E
reference_id
reference_type
scores
0
value MODERATE
scoring_system generic_textual
scoring_elements
url https://lists.apache.org/thread.html/9317fd092b257a0815434b116a8af8daea6e920b6673f4fd5583d5fe@%3Ccommits.druid.apache.org%3E
7
reference_url https://www.postgresql.org/about/news/1883
reference_id
reference_type
scores
0
value MODERATE
scoring_system generic_textual
scoring_elements
url https://www.postgresql.org/about/news/1883
8
reference_url https://www.postgresql.org/about/news/1883/
reference_id
reference_type
scores
url https://www.postgresql.org/about/news/1883/
9
reference_url http://www.securityfocus.com/bid/105220
reference_id
reference_type
scores
0
value MODERATE
scoring_system generic_textual
scoring_elements
url http://www.securityfocus.com/bid/105220
10
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=1622225
reference_id 1622225
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=1622225
11
reference_url https://nvd.nist.gov/vuln/detail/CVE-2018-10936
reference_id CVE-2018-10936
reference_type
scores
0
value MODERATE
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2018-10936
12
reference_url https://github.com/advisories/GHSA-568q-9fw5-28wf
reference_id GHSA-568q-9fw5-28wf
reference_type
scores
0
value MODERATE
scoring_system cvssv3.1_qr
scoring_elements
1
value MODERATE
scoring_system generic_textual
scoring_elements
url https://github.com/advisories/GHSA-568q-9fw5-28wf
fixed_packages
0
url pkg:deb/debian/libpgjava@42.2.5-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.2.5-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.5-1%3Fdistro=trixie
1
url pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.15-1%252Bdeb11u1%3Fdistro=trixie
2
url pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.5.5-0%252Bdeb12u1%3Fdistro=trixie
3
url pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.7-1%3Fdistro=trixie
4
url pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.10-1%3Fdistro=trixie
5
url pkg:deb/debian/libpgjava@42.7.11-1?distro=trixie
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
aliases CVE-2018-10936, GHSA-568q-9fw5-28wf
risk_score 3.6
exploitability 0.5
weighted_severity 7.3
resource_url http://public2.vulnerablecode.io/vulnerabilities/VCID-6z5w-j6xv-fffz
2
url VCID-7p16-8nb5-kucz
vulnerability_id VCID-7p16-8nb5-kucz
summary
Remote code execution vulnerability using plugin features
pgjdbc is the offical PostgreSQL JDBC Driver. A security hole was found in the jdbc driver for postgresql database while doing security research. The system using the postgresql library will be attacked when attacker control the jdbc url or properties. pgjdbc instantiates plugin instances based on class names provided via `authenticationPluginClassName`, `sslhostnameverifier`, `socketFactory`, `sslfactory`, `sslpasswordcallback` connection properties. However, the driver does not verify if the class implements the expected interface before instantiating the class. This can lead to remote code execution loaded via arbitrary classes.
references
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2022-21724.json
reference_id
reference_type
scores
0
value 7.0
scoring_system cvssv3
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2022-21724.json
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2022-21724
reference_id
reference_type
scores
0
value 0.04807
scoring_system epss
scoring_elements 0.89525
published_at 2026-04-26T12:55:00Z
1
value 0.04807
scoring_system epss
scoring_elements 0.89521
published_at 2026-04-24T12:55:00Z
2
value 0.04807
scoring_system epss
scoring_elements 0.89507
published_at 2026-04-21T12:55:00Z
3
value 0.04807
scoring_system epss
scoring_elements 0.89509
published_at 2026-04-18T12:55:00Z
4
value 0.04807
scoring_system epss
scoring_elements 0.89508
published_at 2026-04-16T12:55:00Z
5
value 0.04807
scoring_system epss
scoring_elements 0.8946
published_at 2026-04-02T12:55:00Z
6
value 0.04807
scoring_system epss
scoring_elements 0.89494
published_at 2026-04-13T12:55:00Z
7
value 0.04807
scoring_system epss
scoring_elements 0.89499
published_at 2026-04-12T12:55:00Z
8
value 0.04807
scoring_system epss
scoring_elements 0.89501
published_at 2026-04-11T12:55:00Z
9
value 0.04807
scoring_system epss
scoring_elements 0.89492
published_at 2026-04-09T12:55:00Z
10
value 0.04807
scoring_system epss
scoring_elements 0.89488
published_at 2026-04-08T12:55:00Z
11
value 0.04807
scoring_system epss
scoring_elements 0.89473
published_at 2026-04-07T12:55:00Z
12
value 0.04807
scoring_system epss
scoring_elements 0.89472
published_at 2026-04-04T12:55:00Z
13
value 0.05407
scoring_system epss
scoring_elements 0.90166
published_at 2026-04-29T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2022-21724
2
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21724
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21724
3
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-26520
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-26520
4
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
reference_id
reference_type
scores
0
value 5.3
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L
url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
5
reference_url https://github.com/pgjdbc/pgjdbc
reference_id
reference_type
scores
0
value 7.0
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc
6
reference_url https://github.com/pgjdbc/pgjdbc/commit/f4d0ed69c0b3aae8531d83d6af4c57f22312c813
reference_id
reference_type
scores
0
value 7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value 7.0
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
2
value HIGH
scoring_system generic_textual
scoring_elements
3
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2025-04-25T15:45:52Z/
url https://github.com/pgjdbc/pgjdbc/commit/f4d0ed69c0b3aae8531d83d6af4c57f22312c813
7
reference_url https://lists.debian.org/debian-lts-announce/2022/05/msg00027.html
reference_id
reference_type
scores
0
value 7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value 7.0
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
2
value HIGH
scoring_system generic_textual
scoring_elements
3
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2025-04-25T15:45:52Z/
url https://lists.debian.org/debian-lts-announce/2022/05/msg00027.html
8
reference_url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BVEO7BEFXPBVHSPYL3YKQWZI6DYXQLFS
reference_id
reference_type
scores
0
value 7.0
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BVEO7BEFXPBVHSPYL3YKQWZI6DYXQLFS
9
reference_url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BVEO7BEFXPBVHSPYL3YKQWZI6DYXQLFS/
reference_id
reference_type
scores
url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/BVEO7BEFXPBVHSPYL3YKQWZI6DYXQLFS/
10
reference_url https://nvd.nist.gov/vuln/detail/CVE-2022-21724
reference_id
reference_type
scores
0
value 7.0
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2022-21724
11
reference_url https://security.netapp.com/advisory/ntap-20220311-0005
reference_id
reference_type
scores
0
value 7.0
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://security.netapp.com/advisory/ntap-20220311-0005
12
reference_url https://security.netapp.com/advisory/ntap-20220311-0005/
reference_id
reference_type
scores
0
value 7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2025-04-25T15:45:52Z/
url https://security.netapp.com/advisory/ntap-20220311-0005/
13
reference_url https://www.debian.org/security/2022/dsa-5196
reference_id
reference_type
scores
0
value 7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value 7.0
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
2
value HIGH
scoring_system generic_textual
scoring_elements
3
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2025-04-25T15:45:52Z/
url https://www.debian.org/security/2022/dsa-5196
14
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=2050863
reference_id 2050863
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=2050863
15
reference_url https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/BVEO7BEFXPBVHSPYL3YKQWZI6DYXQLFS/
reference_id BVEO7BEFXPBVHSPYL3YKQWZI6DYXQLFS
reference_type
scores
0
value 7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2025-04-25T15:45:52Z/
url https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/BVEO7BEFXPBVHSPYL3YKQWZI6DYXQLFS/
16
reference_url https://github.com/advisories/GHSA-v7wg-cpwc-24m4
reference_id GHSA-v7wg-cpwc-24m4
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-v7wg-cpwc-24m4
17
reference_url https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-v7wg-cpwc-24m4
reference_id GHSA-v7wg-cpwc-24m4
reference_type
scores
0
value 7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value 7.0
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
2
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
3
value HIGH
scoring_system generic_textual
scoring_elements
4
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2025-04-25T15:45:52Z/
url https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-v7wg-cpwc-24m4
18
reference_url https://access.redhat.com/errata/RHSA-2022:4623
reference_id RHSA-2022:4623
reference_type
scores
url https://access.redhat.com/errata/RHSA-2022:4623
19
reference_url https://access.redhat.com/errata/RHSA-2022:5532
reference_id RHSA-2022:5532
reference_type
scores
url https://access.redhat.com/errata/RHSA-2022:5532
20
reference_url https://access.redhat.com/errata/RHSA-2022:6835
reference_id RHSA-2022:6835
reference_type
scores
url https://access.redhat.com/errata/RHSA-2022:6835
fixed_packages
0
url pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.15-1%252Bdeb11u1%3Fdistro=trixie
1
url pkg:deb/debian/libpgjava@42.3.2-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.3.2-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.3.2-1%3Fdistro=trixie
2
url pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.5.5-0%252Bdeb12u1%3Fdistro=trixie
3
url pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.7-1%3Fdistro=trixie
4
url pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.10-1%3Fdistro=trixie
5
url pkg:deb/debian/libpgjava@42.7.11-1?distro=trixie
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
aliases CVE-2022-21724, GHSA-v7wg-cpwc-24m4
risk_score 4.0
exploitability 0.5
weighted_severity 8.0
resource_url http://public2.vulnerablecode.io/vulnerabilities/VCID-7p16-8nb5-kucz
3
url VCID-9mtm-mq8y-byep
vulnerability_id VCID-9mtm-mq8y-byep
summary
Unescaped parameters in the PostgreSQL JDBC driver
Interaction error in the PostgreSQL JDBC driver before 8.2, when used with a PostgreSQL server with the "standard_conforming_strings" option enabled, such as the default configuration of PostgreSQL 9.1, does not properly escape unspecified JDBC statement parameters, which allows remote attackers to perform SQL injection attacks.  NOTE: as of 20120330, it was claimed that the upstream developer planned to dispute this issue, but an official dispute has not been posted as of 20121005.
references
0
reference_url http://archives.neohapsis.com/archives/bugtraq/2012-03/0126.html
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url http://archives.neohapsis.com/archives/bugtraq/2012-03/0126.html
1
reference_url http://lists.opensuse.org/opensuse-security/2012-03/msg00024.html
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url http://lists.opensuse.org/opensuse-security/2012-03/msg00024.html
2
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2012-1618.json
reference_id
reference_type
scores
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2012-1618.json
3
reference_url https://api.first.org/data/v1/epss?cve=CVE-2012-1618
reference_id
reference_type
scores
0
value 0.019
scoring_system epss
scoring_elements 0.83195
published_at 2026-04-04T12:55:00Z
1
value 0.019
scoring_system epss
scoring_elements 0.83308
published_at 2026-04-29T12:55:00Z
2
value 0.019
scoring_system epss
scoring_elements 0.83181
published_at 2026-04-02T12:55:00Z
3
value 0.019
scoring_system epss
scoring_elements 0.83193
published_at 2026-04-07T12:55:00Z
4
value 0.019
scoring_system epss
scoring_elements 0.83301
published_at 2026-04-26T12:55:00Z
5
value 0.019
scoring_system epss
scoring_elements 0.83293
published_at 2026-04-24T12:55:00Z
6
value 0.019
scoring_system epss
scoring_elements 0.83269
published_at 2026-04-21T12:55:00Z
7
value 0.019
scoring_system epss
scoring_elements 0.83268
published_at 2026-04-18T12:55:00Z
8
value 0.019
scoring_system epss
scoring_elements 0.83267
published_at 2026-04-16T12:55:00Z
9
value 0.019
scoring_system epss
scoring_elements 0.83231
published_at 2026-04-13T12:55:00Z
10
value 0.019
scoring_system epss
scoring_elements 0.83235
published_at 2026-04-12T12:55:00Z
11
value 0.019
scoring_system epss
scoring_elements 0.83241
published_at 2026-04-11T12:55:00Z
12
value 0.019
scoring_system epss
scoring_elements 0.83225
published_at 2026-04-09T12:55:00Z
13
value 0.019
scoring_system epss
scoring_elements 0.83164
published_at 2026-04-01T12:55:00Z
14
value 0.019
scoring_system epss
scoring_elements 0.83218
published_at 2026-04-08T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2012-1618
4
reference_url https://bugzilla.novell.com/show_bug.cgi?id=754273
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url https://bugzilla.novell.com/show_bug.cgi?id=754273
5
reference_url https://github.com/pgjdbc/pgjdbc
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc
6
reference_url https://nvd.nist.gov/vuln/detail/CVE-2012-1618
reference_id
reference_type
scores
0
value 7.5
scoring_system cvssv2
scoring_elements AV:N/AC:L/Au:N/C:P/I:P/A:P
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2012-1618
7
reference_url http://www.openwall.com/lists/oss-security/2012/03/30/8
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url http://www.openwall.com/lists/oss-security/2012/03/30/8
8
reference_url http://www.openwall.com/lists/oss-security/2012/03/30/9
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url http://www.openwall.com/lists/oss-security/2012/03/30/9
9
reference_url http://www.openwall.com/lists/oss-security/2012/03/31/1
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url http://www.openwall.com/lists/oss-security/2012/03/31/1
10
reference_url http://www.openwall.com/lists/oss-security/2012/04/02/4
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url http://www.openwall.com/lists/oss-security/2012/04/02/4
11
reference_url http://www.openwall.com/lists/oss-security/2012/04/04/11
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url http://www.openwall.com/lists/oss-security/2012/04/04/11
12
reference_url http://www.openwall.com/lists/oss-security/2012/04/04/4
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url http://www.openwall.com/lists/oss-security/2012/04/04/4
13
reference_url http://www.openwall.com/lists/oss-security/2012/04/04/5
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url http://www.openwall.com/lists/oss-security/2012/04/04/5
14
reference_url http://www.openwall.com/lists/oss-security/2012/04/04/9
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url http://www.openwall.com/lists/oss-security/2012/04/04/9
15
reference_url http://www.osvdb.org/80641
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url http://www.osvdb.org/80641
16
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=807394
reference_id 807394
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=807394
17
reference_url https://nvd.nist.gov/vuln/search/results?adv_search=true&isCpeNameSearch=true&query=cpe:2.3:a:postgresql:postgresql:9.1:*:*:*:*:*:*:*
reference_id cpe:2.3:a:postgresql:postgresql:9.1:*:*:*:*:*:*:*
reference_type
scores
url https://nvd.nist.gov/vuln/search/results?adv_search=true&isCpeNameSearch=true&query=cpe:2.3:a:postgresql:postgresql:9.1:*:*:*:*:*:*:*
18
reference_url https://nvd.nist.gov/vuln/search/results?adv_search=true&isCpeNameSearch=true&query=cpe:2.3:a:postgresql:postgresql_jdbc_driver:8.1:*:*:*:*:*:*:*
reference_id cpe:2.3:a:postgresql:postgresql_jdbc_driver:8.1:*:*:*:*:*:*:*
reference_type
scores
url https://nvd.nist.gov/vuln/search/results?adv_search=true&isCpeNameSearch=true&query=cpe:2.3:a:postgresql:postgresql_jdbc_driver:8.1:*:*:*:*:*:*:*
19
reference_url https://github.com/advisories/GHSA-h86w-m5rm-xr33
reference_id GHSA-h86w-m5rm-xr33
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-h86w-m5rm-xr33
fixed_packages
0
url pkg:deb/debian/libpgjava@0?distro=trixie
purl pkg:deb/debian/libpgjava@0?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@0%3Fdistro=trixie
1
url pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.15-1%252Bdeb11u1%3Fdistro=trixie
2
url pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.5.5-0%252Bdeb12u1%3Fdistro=trixie
3
url pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.7-1%3Fdistro=trixie
4
url pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.10-1%3Fdistro=trixie
5
url pkg:deb/debian/libpgjava@42.7.11-1?distro=trixie
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
aliases CVE-2012-1618, GHSA-h86w-m5rm-xr33
risk_score null
exploitability null
weighted_severity null
resource_url http://public2.vulnerablecode.io/vulnerabilities/VCID-9mtm-mq8y-byep
4
url VCID-ba8g-gn36-7bdp
vulnerability_id VCID-ba8g-gn36-7bdp
summary
PostgreSQL JDBC Driver SQL Injection in ResultSet.refreshRow() with malicious column names
### Impact
_What kind of vulnerability is it? Who is impacted?_

The PGJDBC implementation of the `java.sql.ResultRow.refreshRow()` method is not performing escaping of column names so a malicious column name that contains a statement terminator, e.g. `;`, could lead to SQL injection. This could lead to executing additional SQL commands as the application's JDBC user.

User applications that do not invoke the `ResultSet.refreshRow()` method are not impacted.

User application that do invoke that method are impacted if the underlying database that they are querying via their JDBC application may be under the control of an attacker. The attack requires the attacker to trick the user into executing SQL against a table name who's column names would contain the malicious SQL and subsequently invoke the `refreshRow()` method on the ResultSet.

For example:

```sql
CREATE TABLE refresh_row_example (
  id     int PRIMARY KEY,
  "1 FROM refresh_row_example; SELECT pg_sleep(10); SELECT * " int
);
```

This example has a table with two columns. The name of the second column is crafted to contain a statement terminator followed by additional SQL. Invoking the `ResultSet.refreshRow()` on a ResultSet that queried this table, e.g. `SELECT * FROM refresh_row`, would cause the additional SQL commands such as the `SELECT pg_sleep(10)` invocation to be executed.

As the multi statement command would contain multiple results, it would not be possible for the attacker to get data directly out of this approach as the `ResultSet.refreshRow()` method would throw an exception. However, the attacker could execute any arbitrary SQL including inserting the data into another table that could then be read or any other DML / DDL statement.

Note that the application's JDBC user and the schema owner need not be the same. A JDBC application that executes as a privileged user querying database schemas owned by potentially malicious less-privileged users would be vulnerable. In that situation it may be possible for the malicious user to craft a schema that causes the application to execute commands as the privileged user.

### Patches
_Has the problem been patched? What versions should users upgrade to?_

Yes, versions 42.2.26, 42.3.7, and 42.4.1 have been released with a fix.

### Workarounds
_Is there a way for users to fix or remediate the vulnerability without upgrading?_

Check that you are not using the `ResultSet.refreshRow()` method.

If you are, ensure that the code that executes that method does not connect to a database that is controlled by an unauthenticated or malicious user. If your application only connects to its own database with a fixed schema with no DDL permissions, then you will not be affected by this vulnerability as it requires a maliciously crafted schema.
references
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2022-31197.json
reference_id
reference_type
scores
0
value 8.0
scoring_system cvssv3
scoring_elements CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2022-31197.json
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2022-31197
reference_id
reference_type
scores
0
value 0.02768
scoring_system epss
scoring_elements 0.86076
published_at 2026-04-29T12:55:00Z
1
value 0.03579
scoring_system epss
scoring_elements 0.8777
published_at 2026-04-24T12:55:00Z
2
value 0.03579
scoring_system epss
scoring_elements 0.87753
published_at 2026-04-21T12:55:00Z
3
value 0.03579
scoring_system epss
scoring_elements 0.87754
published_at 2026-04-18T12:55:00Z
4
value 0.03579
scoring_system epss
scoring_elements 0.87741
published_at 2026-04-13T12:55:00Z
5
value 0.03579
scoring_system epss
scoring_elements 0.87776
published_at 2026-04-26T12:55:00Z
6
value 0.03579
scoring_system epss
scoring_elements 0.87732
published_at 2026-04-08T12:55:00Z
7
value 0.03579
scoring_system epss
scoring_elements 0.87711
published_at 2026-04-07T12:55:00Z
8
value 0.03579
scoring_system epss
scoring_elements 0.87709
published_at 2026-04-04T12:55:00Z
9
value 0.03579
scoring_system epss
scoring_elements 0.87697
published_at 2026-04-02T12:55:00Z
10
value 0.03579
scoring_system epss
scoring_elements 0.87755
published_at 2026-04-16T12:55:00Z
11
value 0.03579
scoring_system epss
scoring_elements 0.87743
published_at 2026-04-12T12:55:00Z
12
value 0.03579
scoring_system epss
scoring_elements 0.87749
published_at 2026-04-11T12:55:00Z
13
value 0.03579
scoring_system epss
scoring_elements 0.87738
published_at 2026-04-09T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2022-31197
2
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-31197
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-31197
3
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
reference_id
reference_type
scores
0
value 8.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N
url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
4
reference_url https://github.com/pgjdbc/pgjdbc
reference_id
reference_type
scores
0
value 7.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc
5
reference_url https://github.com/pgjdbc/pgjdbc/commit/739e599d52ad80f8dcd6efedc6157859b1a9d637
reference_id
reference_type
scores
0
value 7.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2025-04-22T15:42:38Z/
url https://github.com/pgjdbc/pgjdbc/commit/739e599d52ad80f8dcd6efedc6157859b1a9d637
6
reference_url https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-r38f-c4h4-hqq2
reference_id
reference_type
scores
0
value 7.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
2
value HIGH
scoring_system generic_textual
scoring_elements
3
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2025-04-22T15:42:38Z/
url https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-r38f-c4h4-hqq2
7
reference_url https://lists.debian.org/debian-lts-announce/2022/10/msg00009.html
reference_id
reference_type
scores
0
value 7.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2025-04-22T15:42:38Z/
url https://lists.debian.org/debian-lts-announce/2022/10/msg00009.html
8
reference_url https://lists.debian.org/debian-lts-announce/2024/12/msg00017.html
reference_id
reference_type
scores
0
value 7.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.debian.org/debian-lts-announce/2024/12/msg00017.html
9
reference_url https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/I6WHUADTZBBQLVHO4YG4XCWDGWBT4LRP
reference_id
reference_type
scores
0
value 7.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/I6WHUADTZBBQLVHO4YG4XCWDGWBT4LRP
10
reference_url https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/UTFE6SV33P5YYU2GNTQZQKQRVR3GYE4S
reference_id
reference_type
scores
0
value 7.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/UTFE6SV33P5YYU2GNTQZQKQRVR3GYE4S
11
reference_url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I6WHUADTZBBQLVHO4YG4XCWDGWBT4LRP
reference_id
reference_type
scores
0
value 7.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/I6WHUADTZBBQLVHO4YG4XCWDGWBT4LRP
12
reference_url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UTFE6SV33P5YYU2GNTQZQKQRVR3GYE4S
reference_id
reference_type
scores
0
value 7.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/UTFE6SV33P5YYU2GNTQZQKQRVR3GYE4S
13
reference_url https://nvd.nist.gov/vuln/detail/CVE-2022-31197
reference_id
reference_type
scores
0
value 7.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2022-31197
14
reference_url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1016662
reference_id 1016662
reference_type
scores
url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1016662
15
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=2129428
reference_id 2129428
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=2129428
16
reference_url https://github.com/advisories/GHSA-r38f-c4h4-hqq2
reference_id GHSA-r38f-c4h4-hqq2
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-r38f-c4h4-hqq2
17
reference_url https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/I6WHUADTZBBQLVHO4YG4XCWDGWBT4LRP/
reference_id I6WHUADTZBBQLVHO4YG4XCWDGWBT4LRP
reference_type
scores
0
value 7.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
1
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2025-04-22T15:42:38Z/
url https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/I6WHUADTZBBQLVHO4YG4XCWDGWBT4LRP/
18
reference_url https://access.redhat.com/errata/RHSA-2022:8652
reference_id RHSA-2022:8652
reference_type
scores
url https://access.redhat.com/errata/RHSA-2022:8652
19
reference_url https://access.redhat.com/errata/RHSA-2022:9023
reference_id RHSA-2022:9023
reference_type
scores
url https://access.redhat.com/errata/RHSA-2022:9023
20
reference_url https://access.redhat.com/errata/RHSA-2023:0318
reference_id RHSA-2023:0318
reference_type
scores
url https://access.redhat.com/errata/RHSA-2023:0318
21
reference_url https://access.redhat.com/errata/RHSA-2023:1006
reference_id RHSA-2023:1006
reference_type
scores
url https://access.redhat.com/errata/RHSA-2023:1006
22
reference_url https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/UTFE6SV33P5YYU2GNTQZQKQRVR3GYE4S/
reference_id UTFE6SV33P5YYU2GNTQZQKQRVR3GYE4S
reference_type
scores
0
value 7.1
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
1
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2025-04-22T15:42:38Z/
url https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/UTFE6SV33P5YYU2GNTQZQKQRVR3GYE4S/
fixed_packages
0
url pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.15-1%252Bdeb11u1%3Fdistro=trixie
1
url pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u2?distro=trixie
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
2
url pkg:deb/debian/libpgjava@42.4.1-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.4.1-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.4.1-1%3Fdistro=trixie
3
url pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.5.5-0%252Bdeb12u1%3Fdistro=trixie
4
url pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.7-1%3Fdistro=trixie
5
url pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.10-1%3Fdistro=trixie
6
url pkg:deb/debian/libpgjava@42.7.11-1?distro=trixie
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
aliases CVE-2022-31197, GHSA-r38f-c4h4-hqq2
risk_score 4.0
exploitability 0.5
weighted_severity 8.0
resource_url http://public2.vulnerablecode.io/vulnerabilities/VCID-ba8g-gn36-7bdp
5
url VCID-hada-xkcc-8fch
vulnerability_id VCID-hada-xkcc-8fch
summary
references
0
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-42198
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-42198
1
reference_url https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-98qh-xjc8-98pq
reference_id GHSA-98qh-xjc8-98pq
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2026-04-29T18:00:34Z/
url https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-98qh-xjc8-98pq
2
reference_url https://github.com/pgjdbc/pgjdbc/releases/tag/REL42.7.11
reference_id REL42.7.11
reference_type
scores
0
value 7.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
1
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2026-04-29T18:00:34Z/
url https://github.com/pgjdbc/pgjdbc/releases/tag/REL42.7.11
fixed_packages
0
url pkg:deb/debian/libpgjava@42.7.11-1?distro=trixie
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
aliases CVE-2026-42198
risk_score 3.4
exploitability 0.5
weighted_severity 6.8
resource_url http://public2.vulnerablecode.io/vulnerabilities/VCID-hada-xkcc-8fch
6
url VCID-hpc5-vtmd-gub5
vulnerability_id VCID-hpc5-vtmd-gub5
summary
Path traversal in org.postgresql:postgresql
** DISPUTED ** In pgjdbc before 42.3.3, an attacker (who controls the jdbc URL or properties) can call java.util.logging.FileHandler to write to arbitrary files through the loggerFile and loggerLevel connection properties. An example situation is that an attacker could create an executable JSP file under a Tomcat web root. NOTE: the vendor's position is that there is no pgjdbc vulnerability; instead, it is a vulnerability for any application to use the pgjdbc driver with untrusted connection properties.
references
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2022-26520.json
reference_id
reference_type
scores
0
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-2022-26520.json
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2022-26520
reference_id
reference_type
scores
0
value 0.01277
scoring_system epss
scoring_elements 0.79638
published_at 2026-04-29T12:55:00Z
1
value 0.01277
scoring_system epss
scoring_elements 0.79622
published_at 2026-04-26T12:55:00Z
2
value 0.01277
scoring_system epss
scoring_elements 0.79616
published_at 2026-04-24T12:55:00Z
3
value 0.0128
scoring_system epss
scoring_elements 0.79543
published_at 2026-04-07T12:55:00Z
4
value 0.0128
scoring_system epss
scoring_elements 0.79557
published_at 2026-04-04T12:55:00Z
5
value 0.0128
scoring_system epss
scoring_elements 0.79572
published_at 2026-04-08T12:55:00Z
6
value 0.0128
scoring_system epss
scoring_elements 0.79579
published_at 2026-04-09T12:55:00Z
7
value 0.0128
scoring_system epss
scoring_elements 0.79601
published_at 2026-04-11T12:55:00Z
8
value 0.0128
scoring_system epss
scoring_elements 0.79585
published_at 2026-04-12T12:55:00Z
9
value 0.0128
scoring_system epss
scoring_elements 0.79577
published_at 2026-04-13T12:55:00Z
10
value 0.0128
scoring_system epss
scoring_elements 0.79606
published_at 2026-04-16T12:55:00Z
11
value 0.0128
scoring_system epss
scoring_elements 0.79605
published_at 2026-04-18T12:55:00Z
12
value 0.0128
scoring_system epss
scoring_elements 0.79609
published_at 2026-04-21T12:55:00Z
13
value 0.0128
scoring_system epss
scoring_elements 0.79534
published_at 2026-04-02T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2022-26520
2
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21724
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21724
3
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-26520
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-26520
4
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
reference_id
reference_type
scores
0
value 6.3
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L
url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
5
reference_url https://github.com/pgjdbc/pgjdbc
reference_id
reference_type
scores
0
value LOW
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc
6
reference_url https://github.com/pgjdbc/pgjdbc/pull/2454/commits/017b929977b4f85795f9ad2fa5de6e80978b8ccc
reference_id
reference_type
scores
0
value LOW
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc/pull/2454/commits/017b929977b4f85795f9ad2fa5de6e80978b8ccc
7
reference_url https://jdbc.postgresql.org/documentation/changelog.html#version_42.3.3
reference_id
reference_type
scores
0
value LOW
scoring_system generic_textual
scoring_elements
url https://jdbc.postgresql.org/documentation/changelog.html#version_42.3.3
8
reference_url https://jdbc.postgresql.org/documentation/head/tomcat.html
reference_id
reference_type
scores
0
value LOW
scoring_system generic_textual
scoring_elements
url https://jdbc.postgresql.org/documentation/head/tomcat.html
9
reference_url https://www.debian.org/security/2022/dsa-5196
reference_id
reference_type
scores
0
value LOW
scoring_system generic_textual
scoring_elements
url https://www.debian.org/security/2022/dsa-5196
10
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=2064007
reference_id 2064007
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=2064007
11
reference_url https://nvd.nist.gov/vuln/detail/CVE-2022-26520
reference_id CVE-2022-26520
reference_type
scores
0
value LOW
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2022-26520
12
reference_url https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-673j-qm5f-xpv8
reference_id GHSA-673j-qm5f-xpv8
reference_type
scores
0
value LOW
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-673j-qm5f-xpv8
13
reference_url https://github.com/advisories/GHSA-727h-hrw8-jg8q
reference_id GHSA-727h-hrw8-jg8q
reference_type
scores
0
value LOW
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-727h-hrw8-jg8q
14
reference_url https://access.redhat.com/errata/RHSA-2022:5532
reference_id RHSA-2022:5532
reference_type
scores
url https://access.redhat.com/errata/RHSA-2022:5532
15
reference_url https://access.redhat.com/errata/RHSA-2022:6835
reference_id RHSA-2022:6835
reference_type
scores
url https://access.redhat.com/errata/RHSA-2022:6835
fixed_packages
0
url pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.15-1%252Bdeb11u1%3Fdistro=trixie
1
url pkg:deb/debian/libpgjava@42.3.3-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.3.3-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.3.3-1%3Fdistro=trixie
2
url pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.5.5-0%252Bdeb12u1%3Fdistro=trixie
3
url pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.7-1%3Fdistro=trixie
4
url pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.10-1%3Fdistro=trixie
5
url pkg:deb/debian/libpgjava@42.7.11-1?distro=trixie
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
aliases CVE-2022-26520, GHSA-727h-hrw8-jg8q
risk_score 4.4
exploitability 0.5
weighted_severity 8.8
resource_url http://public2.vulnerablecode.io/vulnerabilities/VCID-hpc5-vtmd-gub5
7
url VCID-qub7-qp14-uqcg
vulnerability_id VCID-qub7-qp14-uqcg
summary
TemporaryFolder on unix-like systems does not limit access to created files
**Vulnerability**

`PreparedStatement.setText(int, InputStream)`
and

`PreparedStatemet.setBytea(int, InputStream)`

will create a temporary file if the InputStream is larger than 51k

 
Example of vulnerable code:

```java
String s = "some very large string greater than 51200 bytes";

PreparedStatement.setInputStream(1, new ByteArrayInputStream(s.getBytes()) );
```
This will create a temporary file which is readable by other users on Unix like systems, but not MacOS.

Impact
On Unix like systems, the system's temporary directory is shared between all users on that system. Because of this, when files and directories are written into this directory they are, by default, readable by other users on that same system.

This vulnerability does not allow other users to overwrite the contents of these directories or files. This is purely an information disclosure vulnerability.

When analyzing the impact of this vulnerability, here are the important questions to ask:

Is the driver running in an environment where the OS has other untrusted users.
If yes, and you answered 'yes' to question 1, this vulnerability impacts you.
If no, this vulnerability does not impact you.
Patches
Because certain JDK file system APIs were only added in JDK 1.7, this this fix is dependent upon the version of the JDK you are using.

Java 1.8 and higher users: this vulnerability is fixed in 42.2.27, 42.3.8, 42.4.3, 42.5.1
Java 1.7 users: this vulnerability is fixed in 42.2.27.jre7
Java 1.6 and lower users: no patch is available; you must use the workaround below.
Workarounds
If you are unable to patch, or are stuck running on Java 1.6, specifying the java.io.tmpdir system environment variable to a directory that is exclusively owned by the executing user will fix this vulnerability.

References
[CWE-200: Exposure of Sensitive Information to an Unauthorized Actor](https://cwe.mitre.org/data/definitions/200.html)
Fix commit https://github.com/pgjdbc/pgjdbc/commit/9008dc9aade6dbfe4efafcd6872ebc55f4699cf5
Similar Vulnerabilities
Google Guava - https://github.com/google/guava/issues/4011
Apache Ant - https://nvd.nist.gov/vuln/detail/CVE-2020-1945
JetBrains Kotlin Compiler - https://nvd.nist.gov/vuln/detail/CVE-2020-15824
references
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2022-41946.json
reference_id
reference_type
scores
0
value 5.5
scoring_system cvssv3
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2022-41946.json
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2022-41946
reference_id
reference_type
scores
0
value 0.00082
scoring_system epss
scoring_elements 0.23846
published_at 2026-04-29T12:55:00Z
1
value 0.00082
scoring_system epss
scoring_elements 0.24027
published_at 2026-04-21T12:55:00Z
2
value 0.00082
scoring_system epss
scoring_elements 0.23901
published_at 2026-04-24T12:55:00Z
3
value 0.00082
scoring_system epss
scoring_elements 0.23888
published_at 2026-04-26T12:55:00Z
4
value 0.00126
scoring_system epss
scoring_elements 0.31878
published_at 2026-04-07T12:55:00Z
5
value 0.00126
scoring_system epss
scoring_elements 0.32013
published_at 2026-04-02T12:55:00Z
6
value 0.00126
scoring_system epss
scoring_elements 0.32054
published_at 2026-04-04T12:55:00Z
7
value 0.00126
scoring_system epss
scoring_elements 0.31902
published_at 2026-04-18T12:55:00Z
8
value 0.00126
scoring_system epss
scoring_elements 0.31922
published_at 2026-04-16T12:55:00Z
9
value 0.00126
scoring_system epss
scoring_elements 0.31889
published_at 2026-04-13T12:55:00Z
10
value 0.00126
scoring_system epss
scoring_elements 0.31923
published_at 2026-04-12T12:55:00Z
11
value 0.00126
scoring_system epss
scoring_elements 0.31962
published_at 2026-04-11T12:55:00Z
12
value 0.00126
scoring_system epss
scoring_elements 0.31958
published_at 2026-04-09T12:55:00Z
13
value 0.00126
scoring_system epss
scoring_elements 0.3193
published_at 2026-04-08T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2022-41946
2
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41946
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41946
3
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
reference_id
reference_type
scores
0
value 5.5
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
4
reference_url https://github.com/pgjdbc/pgjdbc
reference_id
reference_type
scores
0
value 4.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N
1
value MODERATE
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc
5
reference_url https://github.com/pgjdbc/pgjdbc/commit/9008dc9aade6dbfe4efafcd6872ebc55f4699cf5
reference_id
reference_type
scores
0
value 4.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N
1
value MODERATE
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc/commit/9008dc9aade6dbfe4efafcd6872ebc55f4699cf5
6
reference_url https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-562r-vg33-8x8h
reference_id
reference_type
scores
0
value 4.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N
1
value MODERATE
scoring_system cvssv3.1_qr
scoring_elements
2
value MODERATE
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-562r-vg33-8x8h
7
reference_url https://lists.debian.org/debian-lts-announce/2022/12/msg00003.html
reference_id
reference_type
scores
0
value 4.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N
1
value MODERATE
scoring_system generic_textual
scoring_elements
url https://lists.debian.org/debian-lts-announce/2022/12/msg00003.html
8
reference_url https://lists.debian.org/debian-lts-announce/2024/12/msg00017.html
reference_id
reference_type
scores
0
value 4.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N
1
value MODERATE
scoring_system generic_textual
scoring_elements
url https://lists.debian.org/debian-lts-announce/2024/12/msg00017.html
9
reference_url https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/25TY2L3RMVNOC7VAHJEAO7PTT6M6JJAD
reference_id
reference_type
scores
0
value 4.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N
1
value MODERATE
scoring_system generic_textual
scoring_elements
url https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/25TY2L3RMVNOC7VAHJEAO7PTT6M6JJAD
10
reference_url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/25TY2L3RMVNOC7VAHJEAO7PTT6M6JJAD
reference_id
reference_type
scores
0
value 4.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N
1
value MODERATE
scoring_system generic_textual
scoring_elements
url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/25TY2L3RMVNOC7VAHJEAO7PTT6M6JJAD
11
reference_url https://nvd.nist.gov/vuln/detail/CVE-2022-41946
reference_id
reference_type
scores
0
value 4.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N
1
value MODERATE
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2022-41946
12
reference_url https://security.netapp.com/advisory/ntap-20240329-0003
reference_id
reference_type
scores
0
value 4.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N
1
value MODERATE
scoring_system generic_textual
scoring_elements
url https://security.netapp.com/advisory/ntap-20240329-0003
13
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=2153399
reference_id 2153399
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=2153399
14
reference_url https://github.com/advisories/GHSA-562r-vg33-8x8h
reference_id GHSA-562r-vg33-8x8h
reference_type
scores
0
value MODERATE
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-562r-vg33-8x8h
15
reference_url https://access.redhat.com/errata/RHSA-2023:0758
reference_id RHSA-2023:0758
reference_type
scores
url https://access.redhat.com/errata/RHSA-2023:0758
16
reference_url https://access.redhat.com/errata/RHSA-2023:0888
reference_id RHSA-2023:0888
reference_type
scores
url https://access.redhat.com/errata/RHSA-2023:0888
17
reference_url https://access.redhat.com/errata/RHSA-2023:1006
reference_id RHSA-2023:1006
reference_type
scores
url https://access.redhat.com/errata/RHSA-2023:1006
18
reference_url https://access.redhat.com/errata/RHSA-2023:1177
reference_id RHSA-2023:1177
reference_type
scores
url https://access.redhat.com/errata/RHSA-2023:1177
19
reference_url https://access.redhat.com/errata/RHSA-2023:1630
reference_id RHSA-2023:1630
reference_type
scores
url https://access.redhat.com/errata/RHSA-2023:1630
20
reference_url https://access.redhat.com/errata/RHSA-2023:1815
reference_id RHSA-2023:1815
reference_type
scores
url https://access.redhat.com/errata/RHSA-2023:1815
21
reference_url https://access.redhat.com/errata/RHSA-2023:2097
reference_id RHSA-2023:2097
reference_type
scores
url https://access.redhat.com/errata/RHSA-2023:2097
22
reference_url https://access.redhat.com/errata/RHSA-2023:2378
reference_id RHSA-2023:2378
reference_type
scores
url https://access.redhat.com/errata/RHSA-2023:2378
23
reference_url https://access.redhat.com/errata/RHSA-2023:2867
reference_id RHSA-2023:2867
reference_type
scores
url https://access.redhat.com/errata/RHSA-2023:2867
fixed_packages
0
url pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.15-1%252Bdeb11u1%3Fdistro=trixie
1
url pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u2?distro=trixie
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
2
url pkg:deb/debian/libpgjava@42.5.1-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.5.1-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.5.1-1%3Fdistro=trixie
3
url pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.5.5-0%252Bdeb12u1%3Fdistro=trixie
4
url pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.7-1%3Fdistro=trixie
5
url pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.10-1%3Fdistro=trixie
6
url pkg:deb/debian/libpgjava@42.7.11-1?distro=trixie
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
aliases CVE-2022-41946, GHSA-562r-vg33-8x8h
risk_score 3.1
exploitability 0.5
weighted_severity 6.2
resource_url http://public2.vulnerablecode.io/vulnerabilities/VCID-qub7-qp14-uqcg
8
url VCID-su7j-n4f9-y3a2
vulnerability_id VCID-su7j-n4f9-y3a2
summary
pgjdbc Client Allows Fallback to Insecure Authentication Despite channelBinding=require Configuration
### Impact
When the PostgreSQL JDBC driver is configured with channel binding set to `required` (default value is `prefer`), the driver would incorrectly allow connections to proceed with authentication methods that do not support channel binding (such as password, MD5, GSS, or SSPI  authentication). This could allow a man-in-the-middle attacker to intercept connections that users believed were protected by channel binding requirements.

### Patches
TBD

### Workarounds

Configure `sslMode=verify-full` to prevent MITM attacks.

### References

* https://www.postgresql.org/docs/current/sasl-authentication.html#SASL-SCRAM-SHA-256
* https://datatracker.ietf.org/doc/html/rfc7677
* https://datatracker.ietf.org/doc/html/rfc5802
references
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2025-49146.json
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv3
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2025-49146.json
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2025-49146
reference_id
reference_type
scores
0
value 0.00013
scoring_system epss
scoring_elements 0.02279
published_at 2026-04-04T12:55:00Z
1
value 0.00013
scoring_system epss
scoring_elements 0.02274
published_at 2026-04-02T12:55:00Z
2
value 0.0004
scoring_system epss
scoring_elements 0.12044
published_at 2026-04-24T12:55:00Z
3
value 0.0004
scoring_system epss
scoring_elements 0.12151
published_at 2026-04-11T12:55:00Z
4
value 0.0004
scoring_system epss
scoring_elements 0.11917
published_at 2026-04-29T12:55:00Z
5
value 0.0004
scoring_system epss
scoring_elements 0.12012
published_at 2026-04-26T12:55:00Z
6
value 0.0004
scoring_system epss
scoring_elements 0.12067
published_at 2026-04-21T12:55:00Z
7
value 0.0004
scoring_system epss
scoring_elements 0.11951
published_at 2026-04-18T12:55:00Z
8
value 0.0004
scoring_system epss
scoring_elements 0.11955
published_at 2026-04-16T12:55:00Z
9
value 0.0004
scoring_system epss
scoring_elements 0.12082
published_at 2026-04-13T12:55:00Z
10
value 0.0004
scoring_system epss
scoring_elements 0.12008
published_at 2026-04-07T12:55:00Z
11
value 0.0004
scoring_system epss
scoring_elements 0.12091
published_at 2026-04-08T12:55:00Z
12
value 0.0004
scoring_system epss
scoring_elements 0.12142
published_at 2026-04-09T12:55:00Z
13
value 0.0004
scoring_system epss
scoring_elements 0.12114
published_at 2026-04-12T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2025-49146
2
reference_url https://datatracker.ietf.org/doc/html/rfc5802
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://datatracker.ietf.org/doc/html/rfc5802
3
reference_url https://datatracker.ietf.org/doc/html/rfc7677
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://datatracker.ietf.org/doc/html/rfc7677
4
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
5
reference_url https://github.com/pgjdbc/pgjdbc
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc
6
reference_url https://github.com/pgjdbc/pgjdbc/commit/9217ed16cb2918ab1b6b9258ae97e6ede244d8a0
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-06-11T14:46:03Z/
url https://github.com/pgjdbc/pgjdbc/commit/9217ed16cb2918ab1b6b9258ae97e6ede244d8a0
7
reference_url https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-hq9p-pm7w-8p54
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
1
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
2
value HIGH
scoring_system generic_textual
scoring_elements
3
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2025-06-11T14:46:03Z/
url https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-hq9p-pm7w-8p54
8
reference_url https://nvd.nist.gov/vuln/detail/CVE-2025-49146
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2025-49146
9
reference_url https://www.postgresql.org/docs/current/sasl-authentication.html#SASL-SCRAM-SHA-256
reference_id
reference_type
scores
0
value 8.2
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://www.postgresql.org/docs/current/sasl-authentication.html#SASL-SCRAM-SHA-256
10
reference_url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1107696
reference_id 1107696
reference_type
scores
url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1107696
11
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=2372307
reference_id 2372307
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=2372307
12
reference_url https://github.com/advisories/GHSA-hq9p-pm7w-8p54
reference_id GHSA-hq9p-pm7w-8p54
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-hq9p-pm7w-8p54
13
reference_url https://access.redhat.com/errata/RHSA-2025:10323
reference_id RHSA-2025:10323
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:10323
14
reference_url https://access.redhat.com/errata/RHSA-2025:13010
reference_id RHSA-2025:13010
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:13010
15
reference_url https://access.redhat.com/errata/RHSA-2025:13012
reference_id RHSA-2025:13012
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:13012
16
reference_url https://access.redhat.com/errata/RHSA-2025:13274
reference_id RHSA-2025:13274
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:13274
17
reference_url https://access.redhat.com/errata/RHSA-2025:16409
reference_id RHSA-2025:16409
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:16409
18
reference_url https://access.redhat.com/errata/RHSA-2025:9697
reference_id RHSA-2025:9697
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:9697
fixed_packages
0
url pkg:deb/debian/libpgjava@0?distro=trixie
purl pkg:deb/debian/libpgjava@0?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@0%3Fdistro=trixie
1
url pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.15-1%252Bdeb11u1%3Fdistro=trixie
2
url pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.5.5-0%252Bdeb12u1%3Fdistro=trixie
3
url pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.7-1%3Fdistro=trixie
4
url pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.10-1%3Fdistro=trixie
5
url pkg:deb/debian/libpgjava@42.7.11-1?distro=trixie
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
aliases CVE-2025-49146, GHSA-hq9p-pm7w-8p54
risk_score 4.0
exploitability 0.5
weighted_severity 8.0
resource_url http://public2.vulnerablecode.io/vulnerabilities/VCID-su7j-n4f9-y3a2
9
url VCID-vdtn-ek54-nqh6
vulnerability_id VCID-vdtn-ek54-nqh6
summary
Improper Restriction of XML External Entity Reference
PostgreSQL JDBC Driver (aka PgJDBC) before 42.2.13 allows XXE.
references
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2020-13692.json
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2020-13692.json
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2020-13692
reference_id
reference_type
scores
0
value 0.07801
scoring_system epss
scoring_elements 0.91992
published_at 2026-04-24T12:55:00Z
1
value 0.07801
scoring_system epss
scoring_elements 0.91988
published_at 2026-04-29T12:55:00Z
2
value 0.07801
scoring_system epss
scoring_elements 0.91994
published_at 2026-04-16T12:55:00Z
3
value 0.07801
scoring_system epss
scoring_elements 0.91975
published_at 2026-04-13T12:55:00Z
4
value 0.07801
scoring_system epss
scoring_elements 0.91978
published_at 2026-04-12T12:55:00Z
5
value 0.07801
scoring_system epss
scoring_elements 0.91979
published_at 2026-04-11T12:55:00Z
6
value 0.07801
scoring_system epss
scoring_elements 0.91976
published_at 2026-04-09T12:55:00Z
7
value 0.07801
scoring_system epss
scoring_elements 0.91971
published_at 2026-04-08T12:55:00Z
8
value 0.07801
scoring_system epss
scoring_elements 0.91958
published_at 2026-04-07T12:55:00Z
9
value 0.07801
scoring_system epss
scoring_elements 0.91952
published_at 2026-04-04T12:55:00Z
10
value 0.07801
scoring_system epss
scoring_elements 0.91944
published_at 2026-04-02T12:55:00Z
11
value 0.07801
scoring_system epss
scoring_elements 0.91936
published_at 2026-04-01T12:55:00Z
12
value 0.07801
scoring_system epss
scoring_elements 0.91991
published_at 2026-04-26T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2020-13692
2
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13692
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13692
3
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
reference_id
reference_type
scores
0
value 5.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L
url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
4
reference_url https://github.com/pgjdbc/pgjdbc/commit/14b62aca4764d496813f55a43d050b017e01eb65
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/pgjdbc/pgjdbc/commit/14b62aca4764d496813f55a43d050b017e01eb65
5
reference_url https://jdbc.postgresql.org/documentation/changelog.html#version_42.2.13
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://jdbc.postgresql.org/documentation/changelog.html#version_42.2.13
6
reference_url https://lists.apache.org/thread.html/r00bcc6b2da972e0d6332a4ebc7807e17305d8b8e7fb2ae63d2a3cbfb@%3Ccommits.camel.apache.org%3E
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.apache.org/thread.html/r00bcc6b2da972e0d6332a4ebc7807e17305d8b8e7fb2ae63d2a3cbfb@%3Ccommits.camel.apache.org%3E
7
reference_url https://lists.apache.org/thread.html/r01ae1b3d981cf2e563e9b5b0a6ea54fb3cac8e9a0512ee5269e3420e@%3Ccommits.camel.apache.org%3E
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.apache.org/thread.html/r01ae1b3d981cf2e563e9b5b0a6ea54fb3cac8e9a0512ee5269e3420e@%3Ccommits.camel.apache.org%3E
8
reference_url https://lists.apache.org/thread.html/r0478a1aa9ae0dbd79d8f7b38d0d93fa933ac232e2b430b6f31a103c0@%3Ccommits.camel.apache.org%3E
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.apache.org/thread.html/r0478a1aa9ae0dbd79d8f7b38d0d93fa933ac232e2b430b6f31a103c0@%3Ccommits.camel.apache.org%3E
9
reference_url https://lists.apache.org/thread.html/r1aae77706aab7d89b4fe19be468fc3c73e9cc84ff79cc2c3bd07c05a@%3Ccommits.camel.apache.org%3E
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.apache.org/thread.html/r1aae77706aab7d89b4fe19be468fc3c73e9cc84ff79cc2c3bd07c05a@%3Ccommits.camel.apache.org%3E
10
reference_url https://lists.apache.org/thread.html/r4bdea189c9991aae7a929d28f575ec46e49ed3d68fa5235825f38a4f@%3Cnotifications.netbeans.apache.org%3E
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.apache.org/thread.html/r4bdea189c9991aae7a929d28f575ec46e49ed3d68fa5235825f38a4f@%3Cnotifications.netbeans.apache.org%3E
11
reference_url https://lists.apache.org/thread.html/r631f967db6260d6178740a3314a35d9421facd8212e62320275fa78e@%3Ccommits.camel.apache.org%3E
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.apache.org/thread.html/r631f967db6260d6178740a3314a35d9421facd8212e62320275fa78e@%3Ccommits.camel.apache.org%3E
12
reference_url https://lists.apache.org/thread.html/r7f6d019839df17646ffd0046a99146cacf40492a6c92078f65fd32e0@%3Ccommits.camel.apache.org%3E
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.apache.org/thread.html/r7f6d019839df17646ffd0046a99146cacf40492a6c92078f65fd32e0@%3Ccommits.camel.apache.org%3E
13
reference_url https://lists.apache.org/thread.html/rb89f92aba44f524d5c270e0c44ca7aec4704691c37fe106cf73ec977@%3Cnotifications.netbeans.apache.org%3E
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.apache.org/thread.html/rb89f92aba44f524d5c270e0c44ca7aec4704691c37fe106cf73ec977@%3Cnotifications.netbeans.apache.org%3E
14
reference_url https://lists.apache.org/thread.html/rfe363bf3a46d440ad57fd05c0e313025c7218364bbdc5fd8622ea7ae@%3Ccommits.camel.apache.org%3E
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.apache.org/thread.html/rfe363bf3a46d440ad57fd05c0e313025c7218364bbdc5fd8622ea7ae@%3Ccommits.camel.apache.org%3E
15
reference_url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCCAPM6FSNOC272DLSNQ6YHXS3OMHGJC
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCCAPM6FSNOC272DLSNQ6YHXS3OMHGJC
16
reference_url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCCAPM6FSNOC272DLSNQ6YHXS3OMHGJC/
reference_id
reference_type
scores
url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/DCCAPM6FSNOC272DLSNQ6YHXS3OMHGJC/
17
reference_url https://security.netapp.com/advisory/ntap-20200619-0005
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://security.netapp.com/advisory/ntap-20200619-0005
18
reference_url https://security.netapp.com/advisory/ntap-20200619-0005/
reference_id
reference_type
scores
url https://security.netapp.com/advisory/ntap-20200619-0005/
19
reference_url https://www.debian.org/security/2022/dsa-5196
reference_id
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://www.debian.org/security/2022/dsa-5196
20
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=1852985
reference_id 1852985
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=1852985
21
reference_url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=962828
reference_id 962828
reference_type
scores
url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=962828
22
reference_url https://nvd.nist.gov/vuln/detail/CVE-2020-13692
reference_id CVE-2020-13692
reference_type
scores
0
value 7.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:L/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2020-13692
23
reference_url https://github.com/advisories/GHSA-88cc-g835-76rp
reference_id GHSA-88cc-g835-76rp
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-88cc-g835-76rp
24
reference_url https://access.redhat.com/errata/RHSA-2020:3005
reference_id RHSA-2020:3005
reference_type
scores
url https://access.redhat.com/errata/RHSA-2020:3005
25
reference_url https://access.redhat.com/errata/RHSA-2020:3176
reference_id RHSA-2020:3176
reference_type
scores
url https://access.redhat.com/errata/RHSA-2020:3176
26
reference_url https://access.redhat.com/errata/RHSA-2020:3209
reference_id RHSA-2020:3209
reference_type
scores
url https://access.redhat.com/errata/RHSA-2020:3209
27
reference_url https://access.redhat.com/errata/RHSA-2020:3248
reference_id RHSA-2020:3248
reference_type
scores
url https://access.redhat.com/errata/RHSA-2020:3248
28
reference_url https://access.redhat.com/errata/RHSA-2020:3283
reference_id RHSA-2020:3283
reference_type
scores
url https://access.redhat.com/errata/RHSA-2020:3283
29
reference_url https://access.redhat.com/errata/RHSA-2020:3284
reference_id RHSA-2020:3284
reference_type
scores
url https://access.redhat.com/errata/RHSA-2020:3284
30
reference_url https://access.redhat.com/errata/RHSA-2020:3285
reference_id RHSA-2020:3285
reference_type
scores
url https://access.redhat.com/errata/RHSA-2020:3285
31
reference_url https://access.redhat.com/errata/RHSA-2020:3286
reference_id RHSA-2020:3286
reference_type
scores
url https://access.redhat.com/errata/RHSA-2020:3286
32
reference_url https://access.redhat.com/errata/RHSA-2020:3675
reference_id RHSA-2020:3675
reference_type
scores
url https://access.redhat.com/errata/RHSA-2020:3675
33
reference_url https://access.redhat.com/errata/RHSA-2020:3678
reference_id RHSA-2020:3678
reference_type
scores
url https://access.redhat.com/errata/RHSA-2020:3678
34
reference_url https://access.redhat.com/errata/RHSA-2020:5568
reference_id RHSA-2020:5568
reference_type
scores
url https://access.redhat.com/errata/RHSA-2020:5568
35
reference_url https://access.redhat.com/errata/RHSA-2021:0110
reference_id RHSA-2021:0110
reference_type
scores
url https://access.redhat.com/errata/RHSA-2021:0110
36
reference_url https://usn.ubuntu.com/USN-5238-1/
reference_id USN-USN-5238-1
reference_type
scores
url https://usn.ubuntu.com/USN-5238-1/
fixed_packages
0
url pkg:deb/debian/libpgjava@42.2.12-2?distro=trixie
purl pkg:deb/debian/libpgjava@42.2.12-2?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.12-2%3Fdistro=trixie
1
url pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.2.15-1%2Bdeb11u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.2.15-1%252Bdeb11u1%3Fdistro=trixie
2
url pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
purl pkg:deb/debian/libpgjava@42.5.5-0%2Bdeb12u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.5.5-0%252Bdeb12u1%3Fdistro=trixie
3
url pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.7-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.7-1%3Fdistro=trixie
4
url pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
purl pkg:deb/debian/libpgjava@42.7.10-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-hada-xkcc-8fch
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.10-1%3Fdistro=trixie
5
url pkg:deb/debian/libpgjava@42.7.11-1?distro=trixie
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
aliases CVE-2020-13692, GHSA-88cc-g835-76rp
risk_score 4.0
exploitability 0.5
weighted_severity 8.0
resource_url http://public2.vulnerablecode.io/vulnerabilities/VCID-vdtn-ek54-nqh6
Risk_scorenull
Resource_urlhttp://public2.vulnerablecode.io/packages/pkg:deb/debian/libpgjava@42.7.11-1%3Fdistro=trixie