← 返回首页
Uncontrolled data used in path expression — CodeQL query help documentation CodeQL docs
CodeQL documentation
CodeQL resources

Uncontrolled data used in path expression

ID: rb/path-injection Kind: path-problem Security severity: 7.5 Severity: error Precision: high Tags: - security - external/cwe/cwe-022 - external/cwe/cwe-023 - external/cwe/cwe-036 - external/cwe/cwe-073 - external/cwe/cwe-099 Query suites: - ruby-code-scanning.qls - ruby-security-extended.qls - ruby-security-and-quality.qls

Click to see the query in the CodeQL repository

Accessing files using paths constructed from user-controlled data can allow an attacker to access unexpected resources. This can result in sensitive information being revealed or deleted, or an attacker being able to influence behavior by modifying unexpected files.

Recommendation

Validate user input before using it to construct a file path, either using an off-the-shelf library like ActiveStorage::Filename#sanitized in Rails, or by performing custom validation.

Ideally, follow these rules:

Example

In the first example, a file name is read from an HTTP request and then used to access a file. However, a malicious user could enter a file name which is an absolute path, such as "/etc/passwd".

In the second example, it appears that the user is restricted to opening a file within the "user" home directory. However, a malicious user could enter a file name containing special characters. For example, the string "../../etc/passwd" will result in the code reading the file located at "/home/user/../../etc/passwd", which is the system’s password file. This file would then be sent back to the user, giving them access to all the system’s passwords.

class FilesController < ActionController::Base def first_example # BAD: This could read any file on the file system @content = File.read params[:path] end def second_example # BAD: This could still read any file on the file system @content = File.read "/home/user/#{ params[:path] }" end end

References