In Apache httpd before 2.2.34 and 2.4.x before 2.4.27, the value placeholder in [Proxy-]Authorization headers of type Digest was not initialized or reset before or between successive key=value assignments by mod_auth_digest. Providing an initial key with no = assignment could reflect the stale value of uninitialized pool memory used by the prior request, leading to leakage of potentially confidential information, and a segfault in other cases resulting in denial of service.
The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Http_server | Apache | * | 2.2.33 (including) |
Http_server | Apache | 2.4.0 (including) | 2.4.26 (including) |
JBoss Core Services on RHEL 6 | RedHat | jbcs-httpd24-httpd-0:2.4.23-122.jbcs.el6 | * |
JBoss Core Services on RHEL 6 | RedHat | jbcs-httpd24-openssl-1:1.0.2h-14.jbcs.el6 | * |
JBoss Core Services on RHEL 7 | RedHat | jbcs-httpd24-httpd-0:2.4.23-122.jbcs.el7 | * |
JBoss Core Services on RHEL 7 | RedHat | jbcs-httpd24-openssl-1:1.0.2h-14.jbcs.el7 | * |
Red Hat Enterprise Linux 6 | RedHat | httpd-0:2.2.15-60.el6_9.5 | * |
Red Hat Enterprise Linux 6.7 Extended Update Support | RedHat | httpd-0:2.2.15-47.el6_7.5 | * |
Red Hat Enterprise Linux 7 | RedHat | httpd-0:2.4.6-67.el7_4.2 | * |
Red Hat Enterprise Linux 7.2 Extended Update Support | RedHat | httpd-0:2.4.6-40.el7_2.6 | * |
Red Hat Enterprise Linux 7.3 Extended Update Support | RedHat | httpd-0:2.4.6-45.el7_3.5 | * |
Red Hat JBoss Enterprise Application Platform 6.4 | RedHat | httpd | * |
Red Hat JBoss Enterprise Application Platform 6.4 for RHEL 6 | RedHat | httpd-0:2.2.26-57.ep6.el6 | * |
Red Hat JBoss Enterprise Application Platform 6.4 for RHEL 6 | RedHat | jbcs-httpd24-openssl-1:1.0.2h-14.jbcs.el6 | * |
Red Hat JBoss Enterprise Application Platform 6.4 for RHEL 6 | RedHat | mod_cluster-native-0:1.2.13-9.Final_redhat_2.ep6.el6 | * |
Red Hat JBoss Enterprise Application Platform 6.4 for RHEL 7 | RedHat | httpd22-0:2.2.26-58.ep6.el7 | * |
Red Hat JBoss Enterprise Application Platform 6.4 for RHEL 7 | RedHat | jbcs-httpd24-openssl-1:1.0.2h-14.jbcs.el7 | * |
Red Hat JBoss Enterprise Application Platform 6.4 for RHEL 7 | RedHat | mod_cluster-native-0:1.2.13-9.Final_redhat_2.ep6.el7 | * |
Red Hat JBoss Enterprise Web Server 2 for RHEL 6 | RedHat | httpd-0:2.2.26-57.ep6.el6 | * |
Red Hat JBoss Enterprise Web Server 2 for RHEL 6 | RedHat | jbcs-httpd24-openssl-1:1.0.2h-14.jbcs.el6 | * |
Red Hat JBoss Enterprise Web Server 2 for RHEL 6 | RedHat | mod_cluster-native-0:1.2.13-9.Final_redhat_2.ep6.el6 | * |
Red Hat JBoss Enterprise Web Server 2 for RHEL 6 | RedHat | tomcat6-0:6.0.41-19_patch_04.ep6.el6 | * |
Red Hat JBoss Enterprise Web Server 2 for RHEL 6 | RedHat | tomcat7-0:7.0.54-28_patch_05.ep6.el6 | * |
Red Hat JBoss Enterprise Web Server 2 for RHEL 7 | RedHat | httpd22-0:2.2.26-58.ep6.el7 | * |
Red Hat JBoss Enterprise Web Server 2 for RHEL 7 | RedHat | jbcs-httpd24-openssl-1:1.0.2h-14.jbcs.el7 | * |
Red Hat JBoss Enterprise Web Server 2 for RHEL 7 | RedHat | mod_cluster-native-0:1.2.13-9.Final_redhat_2.ep6.el7 | * |
Red Hat JBoss Enterprise Web Server 2 for RHEL 7 | RedHat | tomcat6-0:6.0.41-19_patch_04.ep6.el7 | * |
Red Hat JBoss Enterprise Web Server 2 for RHEL 7 | RedHat | tomcat7-0:7.0.54-28_patch_05.ep6.el7 | * |
Red Hat JBoss Web Server 2.1 | RedHat | httpd | * |
Red Hat Software Collections for Red Hat Enterprise Linux 6 | RedHat | httpd24-httpd-0:2.4.25-9.el6.1 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 6.7 EUS | RedHat | httpd24-httpd-0:2.4.25-9.el6.1 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7 | RedHat | httpd24-httpd-0:2.4.25-9.el7.1 | * |
Red Hat Software Collections for Red Hat Enterprise Linux 7.3 EUS | RedHat | httpd24-httpd-0:2.4.25-9.el7.1 | * |
Text-Only JBCS | RedHat | httpd | * |
Apache2 | Ubuntu | devel | * |
Apache2 | Ubuntu | esm-infra-legacy/trusty | * |
Apache2 | Ubuntu | esm-infra/xenial | * |
Apache2 | Ubuntu | trusty | * |
Apache2 | Ubuntu | trusty/esm | * |
Apache2 | Ubuntu | upstream | * |
Apache2 | Ubuntu | xenial | * |
Apache2 | Ubuntu | yakkety | * |
Apache2 | Ubuntu | zesty | * |
Input validation is a frequently-used technique for checking potentially dangerous inputs in order to ensure that the inputs are safe for processing within the code, or when communicating with other components. Input can consist of:
Data can be simple or structured. Structured data can be composed of many nested layers, composed of combinations of metadata and raw data, with other simple or structured data. Many properties of raw data or metadata may need to be validated upon entry into the code, such as:
Implied or derived properties of data must often be calculated or inferred by the code itself. Errors in deriving properties may be considered a contributing factor to improper input validation.