Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Security] Path Traversal Vulnerability found #2

Closed
porcupineyhairs opened this issue Sep 22, 2021 · 1 comment
Closed

[Security] Path Traversal Vulnerability found #2

porcupineyhairs opened this issue Sep 22, 2021 · 1 comment

Comments

@porcupineyhairs
Copy link

porcupineyhairs commented Sep 22, 2021

A path traversal attack (also known as directory traversal) aims to access files and directories that are stored outside the web root folder. By manipulating variables that reference files with “dot-dot-slash (../)” sequences and its variations or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system including application source code or configuration and critical system files. It should be noted that access to files is limited by system operational access control (such as in the case of locked or in-use files on the Microsoft Windows operating system).

This attack is also known as “dot-dot-slash”, “directory traversal”, “directory climbing” and “backtracking”.

Root Cause Analysis

In this case, the path traversal vulnerability can be blamed on incorrect usage of the send_from_directory Flask call. The vulnerability occurs due to the code snippet shown below

@app.route("/static/outputs/<path:path>")
def static_outputs_view(path):
# path => Users/cfe/Dev/opencv-rest-api/api/storage/output/15/main.jpg
dirname = os.path.dirname(path)
if not dirname.startswith("/"):
dirname = f"/{dirname}"
filename = os.path.basename(path)
print(dirname, filename)
return send_from_directory(dirname, filename)

Here, since the path parameter is attacker controlled, the effective directory and filename passed to the send_from_directory call can be controlled by the attacker leading to a path traversal attack.

This can be exploited by accessing a URI like /static/outputs/../../../../etc/passwd which will return the contents of the /etc/passwd file.

Remediation

This can be easily fixed my restricting the value of file and path parameters by a fixed whitelist of possible values.

CVSS 3 Score

CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H

This bug was found using CodeQL by Github

@porcupineyhairs
Copy link
Author

This was assigned CVE-2021-43494.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant