Refactor RPC-based checks to use security_checks module#12
Open
ccronca wants to merge 1 commit into
Open
Conversation
39d5907 to
42684dc
Compare
Migrate four RPC-based checks to use shared security_checks functions for reuse across transports. Migrated checks: - R-01: Resource traversal - R-02: Resource access control - X-02: Injection fuzzing - A-03: Token passthrough Changes: - Add parametrized unit tests for R-01 and R-02 - Add unit tests for X-02 and A-03 - Update integration test with status validation for all checks - Document test behavior against insecure server mode 0 - Add TODO for future mode-specific integration tests 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: ccronca <1499184+ccronca@users.noreply.github.com>
42684dc to
a2717a6
Compare
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
Refactor RPC-based security checks to use shared security_checks module functions, enabling code reuse across all transports.
Motivation
Continue the refactoring effort from PR #10 to centralize security check logic for reuse across all transports.
Overview of changes
Part of a series progressively moving security checks from HTTP-specific implementations into the shared security_checks module
🤖 This PR description was generated with AI assistance from Claude Code.