This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a change to branch tomee-9.x
in repository https://gitbox.apache.org/repos/asf/tomee.git
from 2a0d92be8e TOMEE-4112 - Ports "Cache lookup failures" from
https://github.com/apache/tomee/pull/971 to TomEE 9.x by @jgallimore
new 6639f53e61 Before Patch for Commons File Upload
new 162054ced9 Patch Tomcat 10.0.27 for CVE-2023-24998 by applying the
changeset from
new 650234310e Before applying porting patch for BZ 66471 (JSessionId
secure attribute missing with RemoteIpFilter and X-Forwarded-Proto set to https)
new bb5d3f8a73 Patches Tomcat 10.0.27 for CVE-2023-28708 by applying the
changeset from
https://github.com/apache/tomcat/commit/f509bbf31fc00abe3d9f25ebfabca5e05173da5b
new fb1276a290 Ports "Fix parameter counting logic" from
https://github.com/apache/tomcat/commit/ba848da71c523d94950d3c53c19ea155189df9dc
new 31df2f6742 Ports the changes from
https://github.com/apache/tomcat/commit/c88552bb1beab14a62842f8aa6a36f5b2d92d29e
to Tomcat 10.0.27 regarding the default max parameter count
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../src/main/resources/tomee/conf/server.xml | 4 +-
.../src/main/resources/tomee/conf/server.xml | 4 +-
.../src/main/resources/tomee/conf/server.xml | 4 +-
.../src/main/resources/tomee/conf/server.xml | 4 +-
.../patch/java/org/apache/catalina/Globals.java | 298 ++
.../org/apache/catalina/connector/Request.java | 3603 ++++++++++++++++++++
.../apache/catalina/filters/RemoteIpFilter.java | 1334 ++++++++
.../org/apache/tomcat/util/http/Parameters.java | 526 +++
.../util/http/fileupload/FileUploadBase.java | 586 ++++
.../impl/FileCountLimitExceededException.java | 50 +
.../java/org/apache/tomee/installer/Installer.java | 4 +-
11 files changed, 6407 insertions(+), 10 deletions(-)
create mode 100644
tomee/apache-tomee/src/patch/java/org/apache/catalina/Globals.java
create mode 100644
tomee/apache-tomee/src/patch/java/org/apache/catalina/connector/Request.java
create mode 100644
tomee/apache-tomee/src/patch/java/org/apache/catalina/filters/RemoteIpFilter.java
create mode 100644
tomee/apache-tomee/src/patch/java/org/apache/tomcat/util/http/Parameters.java
create mode 100644
tomee/apache-tomee/src/patch/java/org/apache/tomcat/util/http/fileupload/FileUploadBase.java
create mode 100644
tomee/apache-tomee/src/patch/java/org/apache/tomcat/util/http/fileupload/impl/FileCountLimitExceededException.java