CVE Vulnerabilities

CVE-2015-8366

Improper Validation of Array Index

Published: Jan 14, 2020 | Modified: Jan 21, 2020
CVSS 3.x
9.8
CRITICAL
Source:
NVD
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
CVSS 2.x
7.5 HIGH
AV:N/AC:L/Au:N/C:P/I:P/A:P
RedHat/V2
5.8 MODERATE
AV:N/AC:M/Au:N/C:N/I:P/A:P
RedHat/V3
Ubuntu
LOW

Array index error in smal_decode_segment function in LibRaw before 0.17.1 allows context-dependent attackers to cause memory errors and possibly execute arbitrary code via vectors related to indexes.

Weakness

The product uses untrusted input when calculating or using an array index, but the product does not validate or incorrectly validates the index to ensure the index references a valid position within the array.

Affected Software

Name Vendor Start Version End Version
Libraw Libraw * 0.17.1 (excluding)
Darktable Ubuntu artful *
Darktable Ubuntu bionic *
Darktable Ubuntu cosmic *
Darktable Ubuntu devel *
Darktable Ubuntu disco *
Darktable Ubuntu eoan *
Darktable Ubuntu esm-apps/bionic *
Darktable Ubuntu esm-apps/focal *
Darktable Ubuntu esm-apps/jammy *
Darktable Ubuntu esm-apps/noble *
Darktable Ubuntu esm-apps/xenial *
Darktable Ubuntu focal *
Darktable Ubuntu groovy *
Darktable Ubuntu hirsute *
Darktable Ubuntu impish *
Darktable Ubuntu jammy *
Darktable Ubuntu kinetic *
Darktable Ubuntu lunar *
Darktable Ubuntu mantic *
Darktable Ubuntu noble *
Darktable Ubuntu precise *
Darktable Ubuntu trusty *
Darktable Ubuntu upstream *
Darktable Ubuntu vivid *
Darktable Ubuntu wily *
Darktable Ubuntu xenial *
Darktable Ubuntu yakkety *
Darktable Ubuntu zesty *
Dcraw Ubuntu artful *
Dcraw Ubuntu bionic *
Dcraw Ubuntu cosmic *
Dcraw Ubuntu esm-apps/bionic *
Dcraw Ubuntu esm-apps/xenial *
Dcraw Ubuntu precise *
Dcraw Ubuntu trusty *
Dcraw Ubuntu upstream *
Dcraw Ubuntu vivid *
Dcraw Ubuntu wily *
Dcraw Ubuntu xenial *
Dcraw Ubuntu yakkety *
Dcraw Ubuntu zesty *
Exactimage Ubuntu artful *
Exactimage Ubuntu bionic *
Exactimage Ubuntu cosmic *
Exactimage Ubuntu devel *
Exactimage Ubuntu disco *
Exactimage Ubuntu eoan *
Exactimage Ubuntu esm-apps/bionic *
Exactimage Ubuntu esm-apps/focal *
Exactimage Ubuntu esm-apps/jammy *
Exactimage Ubuntu esm-apps/noble *
Exactimage Ubuntu esm-apps/xenial *
Exactimage Ubuntu focal *
Exactimage Ubuntu groovy *
Exactimage Ubuntu hirsute *
Exactimage Ubuntu impish *
Exactimage Ubuntu jammy *
Exactimage Ubuntu kinetic *
Exactimage Ubuntu lunar *
Exactimage Ubuntu mantic *
Exactimage Ubuntu noble *
Exactimage Ubuntu precise *
Exactimage Ubuntu trusty *
Exactimage Ubuntu upstream *
Exactimage Ubuntu vivid *
Exactimage Ubuntu wily *
Exactimage Ubuntu xenial *
Exactimage Ubuntu yakkety *
Exactimage Ubuntu zesty *
Kodi Ubuntu artful *
Kodi Ubuntu bionic *
Kodi Ubuntu cosmic *
Kodi Ubuntu disco *
Kodi Ubuntu eoan *
Kodi Ubuntu esm-apps/bionic *
Kodi Ubuntu esm-apps/focal *
Kodi Ubuntu esm-apps/jammy *
Kodi Ubuntu esm-apps/xenial *
Kodi Ubuntu focal *
Kodi Ubuntu groovy *
Kodi Ubuntu hirsute *
Kodi Ubuntu impish *
Kodi Ubuntu jammy *
Kodi Ubuntu kinetic *
Kodi Ubuntu lunar *
Kodi Ubuntu mantic *
Kodi Ubuntu upstream *
Kodi Ubuntu wily *
Kodi Ubuntu xenial *
Kodi Ubuntu yakkety *
Kodi Ubuntu zesty *
Libraw Ubuntu precise *
Libraw Ubuntu trusty *
Libraw Ubuntu upstream *
Libraw Ubuntu vivid *
Libraw Ubuntu wily *
Rawtherapee Ubuntu artful *
Rawtherapee Ubuntu bionic *
Rawtherapee Ubuntu cosmic *
Rawtherapee Ubuntu devel *
Rawtherapee Ubuntu disco *
Rawtherapee Ubuntu eoan *
Rawtherapee Ubuntu esm-apps/bionic *
Rawtherapee Ubuntu esm-apps/focal *
Rawtherapee Ubuntu esm-apps/jammy *
Rawtherapee Ubuntu esm-apps/noble *
Rawtherapee Ubuntu esm-apps/xenial *
Rawtherapee Ubuntu focal *
Rawtherapee Ubuntu groovy *
Rawtherapee Ubuntu hirsute *
Rawtherapee Ubuntu impish *
Rawtherapee Ubuntu jammy *
Rawtherapee Ubuntu kinetic *
Rawtherapee Ubuntu lunar *
Rawtherapee Ubuntu mantic *
Rawtherapee Ubuntu noble *
Rawtherapee Ubuntu precise *
Rawtherapee Ubuntu trusty *
Rawtherapee Ubuntu upstream *
Rawtherapee Ubuntu vivid *
Rawtherapee Ubuntu wily *
Rawtherapee Ubuntu xenial *
Rawtherapee Ubuntu yakkety *
Rawtherapee Ubuntu zesty *
Ufraw Ubuntu artful *
Ufraw Ubuntu esm-apps/xenial *
Ufraw Ubuntu precise *
Ufraw Ubuntu trusty *
Ufraw Ubuntu upstream *
Ufraw Ubuntu vivid *
Ufraw Ubuntu wily *
Ufraw Ubuntu xenial *
Ufraw Ubuntu yakkety *
Ufraw Ubuntu zesty *
Xbmc Ubuntu precise *
Xbmc Ubuntu vivid *
Xbmc Ubuntu yakkety *

Potential Mitigations

  • For any security checks that are performed on the client side, ensure that these checks are duplicated on the server side, in order to avoid CWE-602. Attackers can bypass the client-side checks by modifying values after the checks have been performed, or by changing the client to remove the client-side checks entirely. Then, these modified values would be submitted to the server.
  • Even though client-side checks provide minimal benefits with respect to server-side security, they are still useful. First, they can support intrusion detection. If the server receives input that should have been rejected by the client, then it may be an indication of an attack. Second, client-side error-checking can provide helpful feedback to the user about the expectations for valid input. Third, there may be a reduction in server-side processing time for accidental input errors, although this is typically a small savings.
  • Use a language that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.
  • For example, Ada allows the programmer to constrain the values of a variable and languages such as Java and Ruby will allow the programmer to handle exceptions when an out-of-bounds index is accessed.
  • Run or compile the software using features or extensions that randomly arrange the positions of a program’s executable and libraries in memory. Because this makes the addresses unpredictable, it can prevent an attacker from reliably jumping to exploitable code.
  • Examples include Address Space Layout Randomization (ASLR) [REF-58] [REF-60] and Position-Independent Executables (PIE) [REF-64]. Imported modules may be similarly realigned if their default memory addresses conflict with other modules, in a process known as “rebasing” (for Windows) and “prelinking” (for Linux) [REF-1332] using randomly generated addresses. ASLR for libraries cannot be used in conjunction with prelink since it would require relocating the libraries at run-time, defeating the whole purpose of prelinking.
  • For more information on these techniques see D3-SAOR (Segment Address Offset Randomization) from D3FEND [REF-1335].
  • Use a CPU and operating system that offers Data Execution Protection (using hardware NX or XD bits) or the equivalent techniques that simulate this feature in software, such as PaX [REF-60] [REF-61]. These techniques ensure that any instruction executed is exclusively at a memory address that is part of the code segment.
  • For more information on these techniques see D3-PSEP (Process Segment Execution Prevention) from D3FEND [REF-1336].
  • 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.
  • When accessing a user-controlled array index, use a stringent range of values that are within the target array. Make sure that you do not allow negative values to be used. That is, verify the minimum as well as the maximum of the range of acceptable values.
  • Run the code in a “jail” or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict which files can be accessed in a particular directory or which commands can be executed by the software.
  • OS-level examples include the Unix chroot jail, AppArmor, and SELinux. In general, managed code may provide some protection. For example, java.io.FilePermission in the Java SecurityManager allows the software to specify restrictions on file operations.
  • This may not be a feasible solution, and it only limits the impact to the operating system; the rest of the application may still be subject to compromise.
  • Be careful to avoid CWE-243 and other weaknesses related to jails.

References