Potential fix for code scanning alert no. 1745: Arbitrary file access during archive extraction ("Zip Slip") #24759
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Potential fix for https://github.com/open-metadata/OpenMetadata/security/code-scanning/1745
General Fix Approach:
The best way to address this vulnerability is to validate that archive entry names do not enable traversal outside the intended root directory. Before using the archive entry name (
fileName) in a filesystem operation or resource lookup, normalize the path and check that it is strictly inside a safe base directory.Detailed Fix:
Since archive entries from jars can contain relative paths, sanitize these before returning from
getResourcesFromJarFile. Specifically:Path, normalize the path, and check that it does not contain unsafe path segments like..or absolute path markers.Which files/lines to edit:
getResourcesFromJarFileincommon/src/main/java/org/openmetadata/common/utils/CommonUtil.java, lines around 88–104.isSafeZipEntryName), add it inside the same file.Needed imports/methods:
java.nio.file.Pathsandjava.nio.file.Path.Suggested fixes powered by Copilot Autofix. Review carefully before merging.
Summary by Gitar
isSafeZipEntryNamevalidation method inCommonUtil.javato prevent Zip Slip path traversal attacksPath.normalize()to block absolute paths,..segments, and empty path componentsgetResourcesFromJarFileto check entry safety before pattern matching with warning logs for unsafe entriesThis will update automatically on new commits.