CVE Vulnerabilities

CVE-2019-20199

Out-of-bounds Read

Published: Dec 31, 2019 | Modified: Aug 24, 2020
CVSS 3.x
6.5
MEDIUM
Source:
NVD
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
CVSS 2.x
4.3 MEDIUM
AV:N/AC:M/Au:N/C:N/I:N/A:P
RedHat/V2
RedHat/V3
Ubuntu
LOW

An issue was discovered in ezXML 0.8.3 through 0.8.6. The function ezxml_decode, while parsing a crafted XML file, performs incorrect memory handling, leading to NULL pointer dereference while running strlen() on a NULL pointer.

Weakness

The product reads data past the end, or before the beginning, of the intended buffer.

Affected Software

Name Vendor Start Version End Version
Ezxml Ezxml_project 0.8.3 (including) 0.8.6 (including)
Mapcache Ubuntu bionic *
Mapcache Ubuntu devel *
Mapcache Ubuntu esm-apps/bionic *
Mapcache Ubuntu esm-apps/focal *
Mapcache Ubuntu esm-apps/jammy *
Mapcache Ubuntu esm-apps/noble *
Mapcache Ubuntu focal *
Mapcache Ubuntu groovy *
Mapcache Ubuntu hirsute *
Mapcache Ubuntu impish *
Mapcache Ubuntu jammy *
Mapcache Ubuntu kinetic *
Mapcache Ubuntu lunar *
Mapcache Ubuntu mantic *
Mapcache Ubuntu noble *
Mapcache Ubuntu oracular *
Mapcache Ubuntu trusty *
Mapcache Ubuntu xenial *
Netcdf Ubuntu bionic *
Netcdf Ubuntu devel *
Netcdf Ubuntu esm-apps/bionic *
Netcdf Ubuntu esm-apps/focal *
Netcdf Ubuntu esm-apps/jammy *
Netcdf Ubuntu esm-apps/noble *
Netcdf Ubuntu focal *
Netcdf Ubuntu groovy *
Netcdf Ubuntu hirsute *
Netcdf Ubuntu impish *
Netcdf Ubuntu jammy *
Netcdf Ubuntu kinetic *
Netcdf Ubuntu lunar *
Netcdf Ubuntu mantic *
Netcdf Ubuntu noble *
Netcdf Ubuntu oracular *
Netcdf Ubuntu trusty *
Netcdf Ubuntu trusty/esm *
Netcdf Ubuntu xenial *
Netcdf-parallel Ubuntu devel *
Netcdf-parallel Ubuntu esm-apps/focal *
Netcdf-parallel Ubuntu esm-apps/jammy *
Netcdf-parallel Ubuntu esm-apps/noble *
Netcdf-parallel Ubuntu focal *
Netcdf-parallel Ubuntu groovy *
Netcdf-parallel Ubuntu hirsute *
Netcdf-parallel Ubuntu impish *
Netcdf-parallel Ubuntu jammy *
Netcdf-parallel Ubuntu kinetic *
Netcdf-parallel Ubuntu lunar *
Netcdf-parallel Ubuntu mantic *
Netcdf-parallel Ubuntu noble *
Netcdf-parallel Ubuntu oracular *
Netcdf-parallel Ubuntu trusty *
Netcdf-parallel Ubuntu xenial *
Scilab Ubuntu bionic *
Scilab Ubuntu devel *
Scilab Ubuntu esm-apps/bionic *
Scilab Ubuntu esm-apps/focal *
Scilab Ubuntu esm-apps/jammy *
Scilab Ubuntu esm-apps/noble *
Scilab Ubuntu focal *
Scilab Ubuntu groovy *
Scilab Ubuntu hirsute *
Scilab Ubuntu impish *
Scilab Ubuntu jammy *
Scilab Ubuntu kinetic *
Scilab Ubuntu lunar *
Scilab Ubuntu mantic *
Scilab Ubuntu noble *
Scilab Ubuntu oracular *
Scilab Ubuntu trusty *
Scilab Ubuntu xenial *

Potential Mitigations

  • Assume all input is malicious. Use an “accept known good” input validation strategy, i.e., use a list of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does.
  • When performing input validation, consider all potentially relevant properties, including length, type of input, the full range of acceptable values, missing or extra inputs, syntax, consistency across related fields, and conformance to business rules. As an example of business rule logic, “boat” may be syntactically valid because it only contains alphanumeric characters, but it is not valid if the input is only expected to contain colors such as “red” or “blue.”
  • Do not rely exclusively on looking for malicious or malformed inputs. This is likely to miss at least one undesirable input, especially if the code’s environment changes. This can give attackers enough room to bypass the intended validation. However, denylists can be useful for detecting potential attacks or determining which inputs are so malformed that they should be rejected outright.
  • To reduce the likelihood of introducing an out-of-bounds read, ensure that you validate and ensure correct calculations for any length argument, buffer size calculation, or offset. Be especially careful of relying on a sentinel (i.e. special character such as NUL) in untrusted inputs.

References