Skip to content

An option to require PKCE parameters #179

Open
@saschanaz

Description

@saschanaz

It seems it's fully optional right now:

// optional: PKCE code challenge
if (code.codeChallenge) {
if (!request.body.code_verifier) {
throw new InvalidGrantError('Missing parameter: `code_verifier`');
}
const hash = pkce.getHashForCodeChallenge({
method: code.codeChallengeMethod,
verifier: request.body.code_verifier
});
if (!hash) {
// notice that we assume that codeChallengeMethod is already
// checked at an earlier stage when being read from
// request.body.code_challenge_method
throw new ServerError('Server error: `getAuthorizationCode()` did not return a valid `codeChallengeMethod` property');
}
if (code.codeChallenge !== hash) {
throw new InvalidGrantError('Invalid grant: code verifier is invalid');
}
}

Could be great if there's an option to force it. Of course one can block the request manually by checking the query, though.

Metadata

Metadata

Assignees

Labels

compliance 📜OAuth 2.0 standard compliancedocumentation 📑Improvements or additions to documentationsecurity ❗Address a security issue

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions