I am remediating my Jetty java apps for CVE-2021-44228 and the other similar log4j findings.
I tried to upgrade to 2.17.0 but not all my apps can upgrade because some of them rely on older version of Jetty that does not work with the new log4j due to the multi-java-release jars (see Error scanning entry META-INF/versions/9/org/apache/logging/log4j/util/StackLocator.class with jetty and log4j 2.9.1?)
Obviously I am working to upgrade those apps to the latest version of Jetty but that is quite involved. It's going to take some time.
So I'm stuck manually remediating the log4j 2.8.2 version (the latest version that is not multi-release format jar).
I have already taken the remediation of the log4j files {nolookups}
and added command line argument to disable the JNDI lookups.
I know I can remove JNDILookup.class which helps remediate the major issue.
Is there an official 2.8.2 fork of the fix going anywhere we can use?