Fix ReDoS vulnerability (py/redos) in path validation - Security Alert #6 - #69
Closed
amazon-q-developer[bot] wants to merge 1 commit into
Closed
Fix ReDoS vulnerability (py/redos) in path validation - Security Alert #6#69amazon-q-developer[bot] wants to merge 1 commit into
amazon-q-developer[bot] wants to merge 1 commit into
Conversation
Author
|
Resolves Issue #68 |
|
Contributor
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.



Summary
Fixes GitHub CodeQL Security Alert #6 (
py/redos, CWE-1333): Inefficient Regular Expression ComplexityProblem
The PATH_PATTERN regex in
packages/extended-data/src/extended_data/primitives/types.pycontained nested quantifiers that could cause catastrophic backtracking (ReDoS vulnerability):Vulnerable Pattern:
The nested quantifiers
(?:[^<>:"|?*\n]+[\\/])*and[^<>:"|?*\n]*operating on overlapping character sets could cause exponential time complexity with malicious input like/aaaaaaaaaaaaa!.Solution
_is_valid_path_string()helper function (after line 202) that validates forbidden characters separately without complex regexstring_to_path()to use the safe validation helperreconstruct_special_type()to use the safe path validationSecurity Impact
Testing
Added comprehensive regression tests in
test_type_utils.py:string_to_path()andreconstruct_special_type()use safe validationValidation
To run the full test suite:
cd packages/extended-data pytest tests/core/test_type_utils.py::TestReDoSRegression -vReferences
Note: No CodeQL alert suppression was used - the vulnerability was fixed at the source.