Fix Open Redirect in Google Auth Callback#78
Conversation
Description:
This change addresses a High-Severity Open Redirect vulnerability in the Google OAuth callback endpoint (`/auth/google/callback`).
Vulnerability:
The `success_url` parameter was previously taken directly from the query string and used in a `RedirectResponse` without validation. This allowed attackers to construct URLs that could redirect authenticated users to malicious sites (e.g., phishing pages).
Fix:
1. Implemented `validate_redirect_url` in `src/security_utils.py`.
- Enforces relative URLs (starting with `/` but not `//`).
- Allows `localhost` and `127.0.0.1` for local development.
- Respects `settings.allowed_origins` for cross-domain redirects if explicitly configured.
- Falls back to `/` for invalid or suspicious URLs.
2. Updated `src/api/routes.py` to sanitize `success_url` using `validate_redirect_url` before redirection.
3. Added regression tests in `tests/test_open_redirect.py` to verify the fix and prevent future regressions.
Verification:
- `tests/test_open_redirect.py` passes, confirming that malicious URLs are sanitized to `/` and valid relative URLs are preserved.
- Linting checks passed.
Co-authored-by: MRiabov <108194191+MRiabov@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
Fixes an Open Redirect vulnerability in the Google Auth callback.
PR created automatically by Jules for task 4811872788570662064 started by @MRiabov