CVE Vulnerabilities

CVE-2023-34982

External Control of File Name or Path

Published: Nov 15, 2023 | Modified: Nov 21, 2024
CVSS 3.x
7.1
HIGH
Source:
NVD
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H
CVSS 2.x
RedHat/V2
RedHat/V3
Ubuntu

This external control vulnerability, if exploited, could allow a local OS-authenticated user with standard privileges to delete files with System privilege on the machine where these products are installed, resulting in denial of service.

Weakness

The product allows user input to control or influence paths or file names that are used in filesystem operations.

Affected Software

Name Vendor Start Version End Version
Batch_management Aveva * 2020 (excluding)
Batch_management Aveva 2020 (including) 2020 (including)
Batch_management Aveva 2020-sp1 (including) 2020-sp1 (including)
Communication_drivers Aveva * 2020 (excluding)
Communication_drivers Aveva 2020 (including) 2020 (including)
Communication_drivers Aveva 2020-r2 (including) 2020-r2 (including)
Communication_drivers Aveva 2020-r2_p01 (including) 2020-r2_p01 (including)
Edge Aveva * 20.1.101 (including)
Enterprise_licensing Aveva * 3.7.002 (including)
Historian Aveva * 2020 (excluding)
Historian Aveva 2020 (including) 2020 (including)
Historian Aveva 2020-r2 (including) 2020-r2 (including)
Historian Aveva 2020-r2_p01 (including) 2020-r2_p01 (including)
Intouch Aveva * 2020 (excluding)
Intouch Aveva 2020 (including) 2020 (including)
Intouch Aveva 2020-r2 (including) 2020-r2 (including)
Intouch Aveva 2020-r2_p01 (including) 2020-r2_p01 (including)
Manufacturing_execution_system Aveva * 2020 (excluding)
Manufacturing_execution_system Aveva 2020 (including) 2020 (including)
Manufacturing_execution_system Aveva 2020-p01 (including) 2020-p01 (including)
Mobile_operator Aveva * 2020 (excluding)
Mobile_operator Aveva 2020 (including) 2020 (including)
Mobile_operator Aveva 2020-r1 (including) 2020-r1 (including)
Plant_scada Aveva * 2020 (excluding)
Plant_scada Aveva 2020 (including) 2020 (including)
Plant_scada Aveva 2020-r2 (including) 2020-r2 (including)
Recipe_management Aveva * 2020 (excluding)
Recipe_management Aveva 2020 (including) 2020 (including)
Recipe_management Aveva 2020-update_1_patch_2 (including) 2020-update_1_patch_2 (including)
System_platform Aveva * 2020 (excluding)
System_platform Aveva 2020 (including) 2020 (including)
System_platform Aveva 2020-r2 (including) 2020-r2 (including)
System_platform Aveva 2020-r2_p01 (including) 2020-r2_p01 (including)
Telemetry_server Aveva 2020r2 (including) 2020r2 (including)
Telemetry_server Aveva 2020r2-sp1 (including) 2020r2-sp1 (including)
Work_tasks Aveva * 2020 (excluding)
Work_tasks Aveva 2020 (including) 2020 (including)
Work_tasks Aveva 2020-update_1 (including) 2020-update_1 (including)
Work_tasks Aveva 2020-update_2 (including) 2020-update_2 (including)

Extended Description

This could allow an attacker to access or modify system files or other files that are critical to the application. Path manipulation errors occur when the following two conditions are met:

For example, the program may give the attacker the ability to overwrite the specified file or run with a configuration controlled by the attacker.

Potential Mitigations

  • Run your code in a “jail” or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict all access to files within a particular directory.
  • Examples include the Unix chroot jail and AppArmor. In general, managed code may provide some protection.
  • This may not be a feasible solution, and it only limits the impact to the operating system; the rest of your application may still be subject to compromise.
  • Be careful to avoid CWE-243 and other weaknesses related to jails.
  • 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 validating filenames, use stringent allowlists that limit the character set to be used. If feasible, only allow a single “.” character in the filename to avoid weaknesses such as CWE-23, and exclude directory separators such as “/” to avoid CWE-36. Use a list of allowable file extensions, which will help to avoid CWE-434.
  • Do not rely exclusively on a filtering mechanism that removes potentially dangerous characters. This is equivalent to a denylist, which may be incomplete (CWE-184). For example, filtering “/” is insufficient protection if the filesystem also supports the use of “" as a directory separator. Another possible error could occur when the filtering is applied in a way that still produces dangerous data (CWE-182). For example, if “../” sequences are removed from the “…/…//” string in a sequential fashion, two instances of “../” would be removed from the original string, but the remaining characters would still form the “../” string.

References