Skip to content

Security: Fix TOCTOU Race Condition causing Username Alias Hijacking - #525

Open
Prathvikmehra wants to merge 5 commits into
vishnukothakapu:mainfrom
Prathvikmehra:fix/profile-toctou-alias-hijacking
Open

Security: Fix TOCTOU Race Condition causing Username Alias Hijacking#525
Prathvikmehra wants to merge 5 commits into
vishnukothakapu:mainfrom
Prathvikmehra:fix/profile-toctou-alias-hijacking

Conversation

@Prathvikmehra

@Prathvikmehra Prathvikmehra commented Jul 24, 2026

Copy link
Copy Markdown
Contributor

🔒 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

  • Refactored \publishProfileDraft\ to pass the Prisma transaction client (\ x) into \isProfileUsernameAvailable.
  • Ensures both the \User\ and \UserAlias\ tables are atomically verified within the same transaction lock.
  • Prevents vanity URL hijacking and routing conflicts.

@vercel

vercel Bot commented Jul 24, 2026

Copy link
Copy Markdown

@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.

@coderabbitai

coderabbitai Bot commented Jul 24, 2026

Copy link
Copy Markdown
Contributor

Warning

Review limit reached

@Prathvikmehra, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 48 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

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 configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: e837863a-769b-4134-aa7d-7dcfb2fa3ae6

📥 Commits

Reviewing files that changed from the base of the PR and between 7df378b and aa4ebb1.

📒 Files selected for processing (6)
  • app/api/export/resume/route.ts
  • app/api/export/vcard/route.ts
  • app/api/user/delete/route.ts
  • lib/accountMerge.ts
  • lib/auth.ts
  • lib/profileWorkflow.ts
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@vercel

vercel Bot commented Jul 24, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
linkid Error Error Jul 24, 2026 8:56am

@vishnukothakapu

Copy link
Copy Markdown
Owner

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:

if (
  beforeSnapshot.username &&
  afterSnapshot.username &&
  beforeSnapshot.username !== afterSnapshot.username
) {
  const isAvailable = await isProfileUsernameAvailable(
    afterSnapshot.username,
    userId,
    tx
  );

  if (!isAvailable) {
    throw new Error("Username already taken");
  }
}

This should resolve the build error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Security: Fix TOCTOU Race Condition causing Username Alias Hijacking

2 participants