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

LG-7434: Support HTTP POST for OIDC logout route #10573

Merged

Commits on May 10, 2024

  1. LG-7434: Support HTTP POST for OIDC logout route

    **Why**:
    
    - The specification for OpenID Connect RP-Initiated Logout 1.0 requires
      both HTTP `GET` and `POST` methods to be supported. See: https://openid.net/specs/openid-connect-rpinitiated-1_0.html#RPLogout
    
    - Data sent using the `POST` method remains encrypted during transport in the
      browser and in web application logs, preventing leakage of sensitive
      information
    
    **How**:
    
    - The same endpoint shall be used, `/openid_connect/logout`, but the
      request data must be sent as part of the body and use form
      serialization (RFC 9110, sec. 9.3.3)
    
    resolves https://gitlab.login.gov/lg-people/lg-people-appdev/protocols/openid-connect/-/issues/3
    
    changelog: Bug Fixes, Security, Support POST for OIDC RP-Initiated Logout 1.0
    lmgeorge committed May 10, 2024
    Configuration menu
    Copy the full SHA
    7913de6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    756061e View commit details
    Browse the repository at this point in the history

Commits on May 11, 2024

  1. Configuration menu
    Copy the full SHA
    947d9a0 View commit details
    Browse the repository at this point in the history