Skip to content
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

Closed
wants to merge 1 commit into from
Closed

Conversation

Jincoco88912
Copy link
Contributor

Enable PKCE Support

Description

This pull request enables support for PKCE (Proof Key for Code Exchange) to enhance the security of OpenID Connect.

Changes

  • Added openid_connect_use_pkce configuration in config/settings.yml.
  • Implemented PKCE generation and validation logic in 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.
  • Enabled support for openid_connect_use_pkce configuration in plugin.rb.

Testing

  • Tested locally to ensure PKCE works as expected.
  • Successfully implemented in the production environment's identity server SSO.

Additional Notes

These changes will enhance the security of OpenID Connect, especially in public client scenarios.

@jjaffeux jjaffeux requested a review from davidtaylorhq October 1, 2024 21:07
@@ -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
Copy link
Member

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.

Suggested change
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:
Copy link
Member

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
Copy link
Member

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.

Suggested change
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
client: true

The JS app does not need this site setting

Copy link
Member

@davidtaylorhq davidtaylorhq left a 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?

@balazsorban44 balazsorban44 mentioned this pull request Oct 4, 2024
@balazsorban44
Copy link
Contributor

@davidtaylorhq this can probably be closed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

3 participants