-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* SAST PathTraversal fix Signed-off-by: Akihiko Kuroda <[email protected]>
- Loading branch information
1 parent
dea441a
commit 7ce8151
Showing
5 changed files
with
90 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# This code is a Qiskit project. | ||
# | ||
# (C) Copyright IBM 2024. | ||
# | ||
# This code is licensed under the Apache License, Version 2.0. You may | ||
# obtain a copy of this license in the LICENSE.txt file in the root directory | ||
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. | ||
# | ||
# Any modifications or derivative works of this code must retain this | ||
# copyright notice, and modified files need to carry a notice indicating | ||
# that they have been altered from the originals. | ||
|
||
""" | ||
=========================================================== | ||
Utilities (:mod:`quantum_serverless.utils.utils`) | ||
=========================================================== | ||
.. currentmodule:: quantum_serverless.utils.utils | ||
Quantum serverless utilities | ||
==================================== | ||
.. autosummary:: | ||
:toctree: ../stubs/ | ||
utility functions | ||
""" | ||
|
||
import os | ||
import re | ||
|
||
|
||
def sanitize_file_path(path: str): | ||
"""sanitize file path. | ||
Sanitization: | ||
character string '..' is replaced to '_'. | ||
character except '0-9a-zA-Z-_.' and directory delimiter('/' or '\') | ||
is replaced to '_'. | ||
Args: | ||
path: file path | ||
Returns: | ||
sanitized filepath | ||
""" | ||
if ".." in path: | ||
path = path.replace("..", "_") | ||
pattern = "[^0-9a-zA-Z-_." + os.sep + "]+" | ||
return re.sub(pattern, "_", path) |