Operation on a Resource after Expiration or Release Affecting org.eclipse.jetty:jetty-server package, versions [9.4.27.v20200227,9.4.30.v20200611)
Threat Intelligence
Do your applications use this vulnerable package?
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applications- Snyk ID SNYK-JAVA-ORGECLIPSEJETTY-575561
- published 10 Jul 2020
- disclosed 10 Jul 2020
- credit Unknown
Introduced: 10 Jul 2020
CVE-2019-17638 Open this link in a new tabHow to fix?
Upgrade org.eclipse.jetty:jetty-server
to version 9.4.30.v20200611 or higher.
Overview
org.eclipse.jetty:jetty-server is a lightweight highly scalable java based web server and servlet engine.
Affected versions of this package are vulnerable to Operation on a Resource after Expiration or Release. In Eclipse Jetty, versions 9.4.27.v20200227 to 9.4.29.v20200521, in case of too large response headers, Jetty throws an exception to produce an HTTP 431 error. When this happens, the ByteBuffer containing the HTTP response headers is released back to the ByteBufferPool twice. Because of this double release, two threads can acquire the same ByteBuffer from the pool and while thread1 is about to use the ByteBuffer to write response1 data, thread2 fills the ByteBuffer with response2 data. Thread1 then proceeds to write the buffer that now contains response2 data. This results in client1, which issued request1 and expects responses, to see response2 which could contain sensitive data belonging to client2 (HTTP session ids, authentication credentials, etc.).