A vulnerability was found in Undertow where the ProxyProtocolReadListener reuses the same StringBuilder instance across multiple requests. This issue occurs when the parseProxyProtocolV1 method processes multiple requests on the same HTTP connection. As a result, different requests may share the same StringBuilder instance, potentially leading to information leakage between requests or responses. In some cases, a value from a previous request or response may be erroneously reused, which could lead to unintended data exposure. This issue primarily results in errors and connection termination but creates a risk of data leakage in multi-request environments.
The product contains a code sequence that can run concurrently with other code, and the code sequence requires temporary, exclusive access to a shared resource, but a timing window exists in which the shared resource can be modified by another code sequence that is operating concurrently.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Build_of_apache_camel_-_hawtio | Redhat | - (including) | - (including) |
Build_of_apache_camel_for_spring_boot | Redhat | - (including) | - (including) |
Build_of_keycloak | Redhat | - (including) | - (including) |
Data_grid | Redhat | 8.0.0 (including) | 8.0.0 (including) |
Integration_camel_k | Redhat | - (including) | - (including) |
Jboss_enterprise_application_platform | Redhat | 7.0.0 (including) | 7.0.0 (including) |
Jboss_enterprise_application_platform | Redhat | 8.0.0 (including) | 8.0.0 (including) |
Jboss_fuse | Redhat | 7.0.0 (including) | 7.0.0 (including) |
Process_automation | Redhat | 7.0 (including) | 7.0 (including) |
Single_sign-on | Redhat | 7.0 (including) | 7.0 (including) |
HawtIO 4.0.0 for Red Hat build of Apache Camel 4 | RedHat | undertow | * |
Red Hat build of Apache Camel 3.20.7 for Spring Boot | RedHat | undertow | * |
Red Hat build of Apache Camel 4.4.2 for Spring Boot | RedHat | undertow | * |
Red Hat JBoss Enterprise Application Platform 7 | RedHat | * | |
Red Hat JBoss Enterprise Application Platform 7.4 for RHEL 8 | RedHat | eap7-undertow-0:2.2.33-2.SP2_redhat_00001.1.el8eap | * |
Red Hat JBoss Enterprise Application Platform 7.4 for RHEL 8 | RedHat | eap7-wildfly-0:7.4.18-1.GA_redhat_00003.1.el8eap | * |
Red Hat JBoss Enterprise Application Platform 7.4 for RHEL 9 | RedHat | eap7-undertow-0:2.2.33-2.SP2_redhat_00001.1.el9eap | * |
Red Hat JBoss Enterprise Application Platform 7.4 for RHEL 9 | RedHat | eap7-wildfly-0:7.4.18-1.GA_redhat_00003.1.el9eap | * |
Red Hat JBoss Enterprise Application Platform 7.4 on RHEL 7 | RedHat | eap7-undertow-0:2.2.33-2.SP2_redhat_00001.1.el7eap | * |
Red Hat JBoss Enterprise Application Platform 7.4 on RHEL 7 | RedHat | eap7-wildfly-0:7.4.18-1.GA_redhat_00003.1.el7eap | * |
Red Hat JBoss Enterprise Application Platform 8 | RedHat | undertow | * |
Red Hat JBoss Enterprise Application Platform 8.0 for RHEL 8 | RedHat | eap8-amazon-ion-java-0:1.11.9-2.redhat_00001.1.el8eap | * |
Red Hat JBoss Enterprise Application Platform 8.0 for RHEL 8 | RedHat | eap8-eap-product-conf-parent-0:800.3.1-2.GA_redhat_00002.1.el8eap | * |
Red Hat JBoss Enterprise Application Platform 8.0 for RHEL 8 | RedHat | eap8-undertow-0:2.3.14-2.SP2_redhat_00001.1.el8eap | * |
Red Hat JBoss Enterprise Application Platform 8.0 for RHEL 8 | RedHat | eap8-wildfly-0:8.0.3-13.GA_redhat_00007.1.el8eap | * |
Red Hat JBoss Enterprise Application Platform 8.0 for RHEL 9 | RedHat | eap8-amazon-ion-java-0:1.11.9-2.redhat_00001.1.el9eap | * |
Red Hat JBoss Enterprise Application Platform 8.0 for RHEL 9 | RedHat | eap8-eap-product-conf-parent-0:800.3.1-2.GA_redhat_00002.1.el9eap | * |
Red Hat JBoss Enterprise Application Platform 8.0 for RHEL 9 | RedHat | eap8-undertow-0:2.3.14-2.SP2_redhat_00001.1.el9eap | * |
Red Hat JBoss Enterprise Application Platform 8.0 for RHEL 9 | RedHat | eap8-wildfly-0:8.0.3-13.GA_redhat_00007.1.el9eap | * |
This can have security implications when the expected synchronization is in security-critical code, such as recording whether a user is authenticated or modifying important state information that should not be influenced by an outsider. A race condition occurs within concurrent environments, and is effectively a property of a code sequence. Depending on the context, a code sequence may be in the form of a function call, a small number of instructions, a series of program invocations, etc. A race condition violates these properties, which are closely related:
A race condition exists when an “interfering code sequence” can still access the shared resource, violating exclusivity. Programmers may assume that certain code sequences execute too quickly to be affected by an interfering code sequence; when they are not, this violates atomicity. For example, the single “x++” statement may appear atomic at the code layer, but it is actually non-atomic at the instruction layer, since it involves a read (the original value of x), followed by a computation (x+1), followed by a write (save the result to x). The interfering code sequence could be “trusted” or “untrusted.” A trusted interfering code sequence occurs within the product; it cannot be modified by the attacker, and it can only be invoked indirectly. An untrusted interfering code sequence can be authored directly by the attacker, and typically it is external to the vulnerable product.