The vulnerability is a cross-site scripting (XSS) issue in the unstable React Server Components (RSC) redirect handling of React Router. The advisory states the patched version is 7.13.2. The changelog for this version points to pull request #14882, which contains the fix. The associated commit 52abfffce11ba3cf3b6ba86a72e95954dd790513 modifies packages/react-router/lib/rsc/browser.tsx. The changes are within the createCallServer function, which processes server-sent data for RSC. The patch introduces a check to validate the protocol of redirect URLs before they are assigned to window.location.href. This prevents the execution of javascript: URLs. The vulnerable function is identified as createCallServer because it contains the logic that processes the untrusted redirect location from the server and performs the client-side redirect without proper validation.