CSRF Token

u_token != session_token

CSRF token is not bound to the session token.

2025-05-18
Tags webcsrfcsrf-token

All you need is a valid CSRF token and the session token of the user you want to target, because they are not linked.

Find a valid CSRF token in the browser.

Copy the CSRF token

Use it to change the email of a different session (other account) and test it.

Write a script if needed, but note that CSRF tokens are often one-time use. Each request may require logging in again and grabbing a fresh token.

Screenshot Screenshot