Monthly archive for September 2014

Wicket 1.5.12 released

15 Sep 2014

This is the twelfth maintenance release of the Wicket 1.5.x series. This release brings over 5 bug fixes and improvements.

<dependency>
    <groupId>org.apache.wi...
more

CVE-2014-3526 - Apache Wicket Information disclosure vulnerability

22 Sep 2014

Severity: Important

Vendor: The Apache Software Foundation

Versions Affected: Apache Wicket 1.5.11, 6.16.0 and 7.0.0-M2

Description:

When rendering a web page Wicket checks the request url against the one at the render time. It is possible the application to change the page parameters (this includes both the query parameters and parameters encoded into the request path). When the requested url differs with the one at the rendering time Wicket stores the response (i.e. the page markup) at the server side and issues an HTTP redirect to the new url. When the second request comes Wicket just flushes the stored response from the first request into the http output stream. This way the browser address bar shows the updated page parameters. When storing the page markup at the server side Wicket uses as an identifier a pair of the current session id plus the new url. However, Wicket does not check if user session is temporary (i.e. sessionId is null). This could lead to a security issue if two or more users with a temporary session are redirected to the same url at the same time. Then user1 might see the markup for user2 which has overridden the markup for user1 while user1 was following the HTTP redirect. In thi...

more