Security: Fix TOCTOU Race Condition causing Username Alias Hijacking - #525
Security: Fix TOCTOU Race Condition causing Username Alias Hijacking#525Prathvikmehra wants to merge 5 commits into
Conversation
…ion and safe oauth linking
… on account deletion
|
@Prathvikmehra is attempting to deploy a commit to the vishnukothakapu's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
Warning Review limit reached
Next review available in: 48 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (6)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Thanks for the contribution! The failure is due to a TypeScript nullability error, not the TOCTOU logic itself. "afterSnapshot.username" has the type "string | null", but "isProfileUsernameAvailable()" expects a "string". Before calling it, you should ensure the username is non-null (or update the function signature if "null" is a valid input). For example: This should resolve the build error. |
🔒 Security Patch: TOCTOU Alias Hijacking
Resolves #514
Description
This PR patches a critical Time-of-Check to Time-of-Use (TOCTOU) race condition in the profile update workflow. Previously, the system checked for username availability and then created the alias in separate, non-atomic steps. This allowed an attacker to hijack a recently released username by exploiting the race window.
Changes Made