-
Notifications
You must be signed in to change notification settings - Fork 5
Fix security gaps, command injection, and add comprehensive scanning coverage (worktrees, hooks, LFS) #211
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
2a00c3e
Initial plan
Copilot fefa683
Fix critical security gaps, bugs, and add comprehensive test coverage
Copilot e6f7b4a
Address code review feedback: fix arithmetic expressions, variable qu…
Copilot d435d95
Add comprehensive summary of all fixes applied
Copilot c710127
Add comprehensive guide for scanning git objects, reflog, worktrees, …
Copilot 465d51a
Implement worktree, hooks, and LFS scanning (easy wins)
Copilot e23954d
Update FIXES_SUMMARY.md with new worktree, hooks, and LFS scanning fe…
Copilot 868aa56
Address code review feedback: cache lists, fix quoting, improve LFS p…
Copilot 55de6b4
Add test for safe handling of options (command injection fix)
djdefi 389607b
Fix: remove SCRIPT variable that broke command execution
djdefi 4d6686f
Fix: scan current directory (.) instead of $REPO path
djdefi deade05
Fix: remove EXCLUDE from initial scan (matches original behavior)
djdefi ce57ddd
DEBUG: Add verbose output to diagnose scan test failure
djdefi e675d35
Fix test: search for 'FOUND' instead of old signature name
djdefi edc3d19
Remove extra documentation files for cleaner PR
djdefi eafbca0
Remove redundant static validation tests
djdefi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@copilot how do we make it support looking at all of that stuff and what else is missing ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've created ADVANCED_SCANNING.md with detailed implementation guidance. Key points:
Easy wins (recommend implementing next):
git worktree list→ scan each path (fast, simple)clamscan -ri .git/hooks/(instant, high security value)git lfs pull→ scan files (common malware vector)Complex but valuable:
git reflog --all(slow, requires checkouts)git cat-file blobon all objects (very slow, 1000s of objects)Also missing:
Main challenge with objects: they're compressed/deltified, requiring extraction of every object individually (hours on large repos).
See ADVANCED_SCANNING.md for complete implementation examples and priority recommendations. Ready to implement any of these if you want to prioritize specific features.