-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable PKCE Support #80
Conversation
@@ -8,6 +8,7 @@ | |||
# url: https://github.com/discourse/discourse-openid-connect | |||
|
|||
enabled_site_setting :openid_connect_enabled | |||
enabled_site_setting :openid_connect_use_pkce |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
enabled_site_setting
means "when this site setting is disabled, turn off all plugin functionality". Each plugin can only have one. We definitely don't want the PKCE one here.
enabled_site_setting :openid_connect_use_pkce |
@@ -35,3 +35,6 @@ discourse_openid_connect: | |||
textarea: true | |||
openid_connect_match_by_email: | |||
default: true | |||
openid_connect_use_pkce: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We'll need a description for this in server.en.yml
@@ -35,3 +35,6 @@ discourse_openid_connect: | |||
textarea: true | |||
openid_connect_match_by_email: | |||
default: true | |||
openid_connect_use_pkce: | |||
default: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Setting this true by default could break existing installations which are incompatible with PKCE. We should make it false by default.
default: true | |
default: false |
Perhaps in future we could explore making it 'default true for new installations only'... but that can be a separate PR
@@ -35,3 +35,6 @@ discourse_openid_connect: | |||
textarea: true | |||
openid_connect_match_by_email: | |||
default: true | |||
openid_connect_use_pkce: | |||
default: true | |||
client: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
client: true |
The JS app does not need this site setting
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Happy to introduce this feature, but we will need to add some acceptance tests to verify the functionality and avoid future regressions. Is that something you have the capacity to work on @Jincoco88912?
@davidtaylorhq this can probably be closed |
Enable PKCE Support
Description
This pull request enables support for PKCE (Proof Key for Code Exchange) to enhance the security of OpenID Connect.
Changes
openid_connect_use_pkce
configuration inconfig/settings.yml
.lib/openid_connect_authenticator.rb
, including:generate_code_verifier
method: Generates a random code verifier.generate_code_challenge
method: Generates a code challenge based on the SHA256 algorithm.openid_connect_use_pkce
configuration inplugin.rb
.Testing
Additional Notes
These changes will enhance the security of OpenID Connect, especially in public client scenarios.