Skip to content

Commit

Permalink
Merge pull request #37 from jensdietrich/fix-test-cve-2019-0225
Browse files Browse the repository at this point in the history
Fix test for CVE-2019-0225
  • Loading branch information
wtwhite committed Sep 28, 2023
2 parents 9784f4a + 38312fe commit 4906c36
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 21 deletions.
19 changes: 3 additions & 16 deletions CVE-2019-0225/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,7 @@ Some minor changes made:
1. JUnit version replaced by Junit5 with JUnit4 support through vintage
2. additional dependency providing mock APIs added: `net.sourceforge.stripes:stripes:1.7.0-async-beta`

Note that the tests __fail__ indicating the vulnerability! There is no later version of jspwiki available in the Maven repository that makes these tests
pass as APIs the tests depends on also change. In particular, the required class `org.apache.wiki.auth.TestAuthorizer` needs to implement additional methods
in `org.apache.wiki.auth.authorize.WebAuthorizer` in `org.apache.jspwiki:jspwiki-main:2.11.0.M7`.

Also, in 2.11.0 , `WikiEngine` expects that *""JSPWiki requires a container which supports at least version 3.1 of Servlet specification"* and
enforces this by throwing an exception. However, the mock container provided in `net.sourceforge.stripes:stripes:1.7.0-async-beta`
only supports container version `2.*`.









Note that the tests __fail__ indicating the vulnerability!

The commit, apache/jspwiki@88d89d6, that contains the original patch to fix the vulnerability also contains a new test -- but that test has a bug, which
was fixed a few minutes later in apache/jspwiki@3ad9e5e. Our test has the same fix.
2 changes: 1 addition & 1 deletion CVE-2019-0225/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<dependency>
<groupId>org.apache.jspwiki</groupId>
<artifactId>jspwiki-main</artifactId>
<version>2.11.0.M6</version>
<version>2.11.0.M2</version>
</dependency>

<dependency>
Expand Down
3 changes: 2 additions & 1 deletion CVE-2019-0225/pov-project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "CVE-2019-0225",
"artifact": "org.apache.jspwiki:jspwiki-war",
"artifact": "org.apache.jspwiki:jspwiki-main",
"vulnerableVersions": [
"2.10.0",
"2.10.1",
Expand All @@ -11,6 +11,7 @@
"2.11.0.M1",
"2.11.0.M2"
],
"fixVersion": "2.11.0.M3",
"testSignalWhenVulnerable": "failure",
"references": [
"https://nvd.nist.gov/vuln/detail/CVE-2019-0225",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void testDoGet() throws Exception {
wikiServlet.doGet( req, res );
wikiServlet.destroy();

Assertions.assertEquals( "/Wiki.jsp?page=wiki%2FWiki.jsp&", req.getForwardUrl() );
Assertions.assertEquals( "/Wiki.jsp?page=Main&", req.getForwardUrl() );
}

@Test
Expand All @@ -56,7 +56,7 @@ public void testNastyDoPost() throws Exception {
wikiServlet.doPost( req, res );
wikiServlet.destroy();

Assertions.assertEquals( "/Wiki.jsp?page=Edit.jsp&", req.getForwardUrl() );
Assertions.assertEquals( "/Wiki.jsp?page=Main&", req.getForwardUrl() );
}

}
}

0 comments on commit 4906c36

Please sign in to comment.