Author: jleroux
Date: Sat Aug 11 10:37:40 2018
New Revision: 1837857

URL: http://svn.apache.org/viewvc?rev=1837857&view=rev
Log:
Fixed: Update Apache Tomcat to 9.0.10 because of CVE-2018-8037
(OFBIZ-10517)

If an async request was completed by the application at the same time as the 
container triggered the async timeout, a race condition existed that could 
result in a user seeing a response intended for a different user. 
An additional issue was present in the NIO and NIO2 connectors that did not 
correctly track the closure of the connection when an async request was 
completed by the application and timed out by the container at the same time.
This could also result in a user seeing a response intended for another user. 

Modified:
    ofbiz/ofbiz-framework/trunk/build.gradle
    ofbiz/ofbiz-plugins/trunk/example/build.gradle

Modified: ofbiz/ofbiz-framework/trunk/build.gradle
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/build.gradle?rev=1837857&r1=1837856&r2=1837857&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/build.gradle (original)
+++ ofbiz/ofbiz-framework/trunk/build.gradle Sat Aug 11 10:37:40 2018
@@ -134,10 +134,10 @@ dependencies {
     compile 'org.apache.sshd:sshd-core:1.7.0'
     compile 'org.apache.tika:tika-core:1.16'
     compile 'org.apache.tika:tika-parsers:1.16'
-    compile 'org.apache.tomcat:tomcat-catalina-ha:9.0.7'
-    compile 'org.apache.tomcat:tomcat-catalina:9.0.7'
-    compile 'org.apache.tomcat:tomcat-jasper:9.0.7'
-    compile 'org.apache.tomcat:tomcat-tribes:9.0.7'
+    compile 'org.apache.tomcat:tomcat-catalina-ha:9.0.10'
+    compile 'org.apache.tomcat:tomcat-catalina:9.0.10'
+    compile 'org.apache.tomcat:tomcat-jasper:9.0.10'
+    compile 'org.apache.tomcat:tomcat-tribes:9.0.10'
     compile 'org.apache.xmlgraphics:fop:2.2'
     compile 'org.apache.xmlrpc:xmlrpc-client:3.1.3'
     compile 'org.apache.xmlrpc:xmlrpc-server:3.1.3'
@@ -150,6 +150,7 @@ dependencies {
     compile 'oro:oro:2.0.8'
     compile 'wsdl4j:wsdl4j:1.6.3'
     compile 'org.jsoup:jsoup:1.11.2'
+    compile 'io.jsonwebtoken:jjwt:0.9.0'
 
     // ofbiz unit-test compile libs
     testCompile 'org.mockito:mockito-core:2.13.0'

Modified: ofbiz/ofbiz-plugins/trunk/example/build.gradle
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/example/build.gradle?rev=1837857&r1=1837856&r2=1837857&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/trunk/example/build.gradle (original)
+++ ofbiz/ofbiz-plugins/trunk/example/build.gradle Sat Aug 11 10:37:40 2018
@@ -18,5 +18,5 @@
  */
 
 dependencies {
-    pluginLibsCompile 'org.apache.tomcat.embed:tomcat-embed-websocket:9.0.7'
+    pluginLibsCompile 'org.apache.tomcat.embed:tomcat-embed-websocket:9.0.10'
 }
\ No newline at end of file


Reply via email to