(no title)
krinchan | 2 years ago
Are you talking about the PKCE variant of authorization code flow which is what replaces implicit flows in native apps and SPAs? Because those use code_challenge and code_verifier fields, not the state field. If you're doing all that in the state field with signed nonces you really should move to PKCE.
LukeShu|2 years ago
rtpg|2 years ago
[1] includes info on this (see "flawed CSRF protection")
[0]: https://www.digitalocean.com/community/tutorials/an-introduc...
[1] https://portswigger.net/web-security/oauth
krinchan|2 years ago
Thanks!