Do not follow a .py symlink out of the scan root - #11
Merged
Conversation
os.walk does not follow directory symlinks, but a file symlink is yielded and read through. A tree containing `src/x.py -> ~/.ssh/id_rsa` therefore had that file opened by `codesnake check src/`, which SECURITY.md already lists as in scope: reading files outside the analyzed paths. The read is not the whole of it. A parse failure becomes SYN001 and the text report prints the offending source line, so content from the target reaches the output. Reproduced with a benign stand-in: pointing at a config file whose first two lines are valid Python printed the third verbatim, credential and all. On a public repository that lands in the CI log, and the attacker chooses the target, so they choose which line fails to parse. The walk now skips a symlink whose resolved path leaves the root. Symlinks that stay inside it are followed as before -- this is containment, not a ban on symlinks -- and an explicit file argument is still read as given, since naming a file is a deliberate act. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0114gUUe4CxYr8W8oC95ffmD
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.
os.walk does not follow directory symlinks, but a file symlink is yielded and
read through. A tree containing
src/x.py -> ~/.ssh/id_rsatherefore had thatfile opened by
codesnake check src/, which SECURITY.md already lists as inscope: reading files outside the analyzed paths.
The read is not the whole of it. A parse failure becomes SYN001 and the text
report prints the offending source line, so content from the target reaches
the output. Reproduced with a benign stand-in: pointing at a config file whose
first two lines are valid Python printed the third verbatim, credential and
all. On a public repository that lands in the CI log, and the attacker chooses
the target, so they choose which line fails to parse.
The walk now skips a symlink whose resolved path leaves the root. Symlinks
that stay inside it are followed as before -- this is containment, not a ban
on symlinks -- and an explicit file argument is still read as given, since
naming a file is a deliberate act.
Co-Authored-By: Claude Opus 5 noreply@anthropic.com
Claude-Session: https://claude.ai/code/session_0114gUUe4CxYr8W8oC95ffmD