Autologout cookie is not secure

Created on 7 September 2022, over 2 years ago
Updated 7 April 2023, almost 2 years ago

Problem/Motivation

Security scans complain about the Secure attribute not being set on the autologout cookie.

Steps to reproduce

  1. Ensure this module is enabled and autologout is configured
  2. Log in to the site
  3. Open your developer tools, find your cookies, and look at the "Drupal.visitor.autologout" cookie. You will see that the "Secure" parameter is not set.

Proposed resolution

Set the "Secure" parameter on this cookie. Possibly add an option to toggle it in case anyone is using this module on an http:// site.

Remaining tasks

Create a patch.

User interface changes

Possibly a checkbox for toggling whether the cookie is secure or not.

Feature request
Status

RTBC

Version

1.0

Component

Code

Created by

🇨🇦Canada dylan donkersgoed London, Ontario

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇳🇱Netherlands johan_vm Tilburg

    Patch #11 works fine, but REQUEST_TIME is deprecated, so I added a small fix for that.

  • Open in Jenkins → Open on Drupal.org →
    Core: 10.1.x + Environment: PHP 8.1 & MySQL 5.7
    last update over 1 year ago
    15 pass, 7 fail
  • First commit to issue fork.
  • Pipeline finished with Success
    over 1 year ago
    Total: 585s
    #23362
  • Status changed to Needs review over 1 year ago
  • 🇸🇮Slovenia deaom

    I added the post update hook for the new settings, so existing users have values set and they only need to export the configuration (to have it set "default"). And also applied the changes from patch in comment #12 Autologout cookie is not secure Needs review
    The testing is now done via GitLab CI and test are passing, so setting the status to needs review and "hidding" the patch files, as the issue fork exists and all changes should be done there.

  • Status changed to Needs work over 1 year ago
  • When the user logs in the cookie correctly sets values of the cookie. The problem comes when JS sets a new cookie cookies.set("Drupal.visitor.autologout_login", Math.round((new Date()).getTime() / 1000));this resets all values to None.

    Looking into fixing it.

  • Pipeline finished with Success
    over 1 year ago
    Total: 400s
    #23400
  • Status changed to Needs review over 1 year ago
  • Now the cookie setting in JS also adds the configurations.

  • Pipeline finished with Success
    over 1 year ago
    Total: 311s
    #23645
  • Status changed to RTBC over 1 year ago
  • 🇸🇮Slovenia deaom

    Good catch for the JS configuration. Just removed the casting from int as it's not necessary and updated post update hook to use correct variable for lifetime. The code works, it sets the cookie base on the settings defined in the configuration, so marking this as RTBC.

  • Pipeline finished with Success
    over 1 year ago
    Total: 297s
    #25060
  • 🇺🇸United States jonraedeke

    This is working really, except that the settings form always reverts back to the default value for cookie lifetime. To replicate, change the value to `0` and save. The form will show `31536000`.

  • Status changed to Needs work over 1 year ago
  • 🇺🇸United States jonraedeke

    There appears to be something wrong with the logic. After the initial timeout, the user is presented with a dialog on every page request. I have it set to "Logout user regardless of activity".

  • Pipeline finished with Failed
    over 1 year ago
    #64238
  • Pipeline finished with Failed
    over 1 year ago
    #64239
  • Pipeline finished with Failed
    over 1 year ago
    #64247
  • Pipeline finished with Failed
    over 1 year ago
    #64248
  • Updated code for issue to set cookie lifetime to 0

  • Status changed to Needs review over 1 year ago
  • 🇺🇸United States jonraedeke

    I figured out why the timer never gets reset after the initial one times out when the module is configured to "Logout user regardless of activity". The cookie with HttpOnly configured to true cannot be accessed by js, so var login_time = cookies.get("Drupal.visitor.autologout_login"); is undefined.

    So the HttpOnly setting is currently incompatible with the "Logout user regardless of activity" setting.

  • Hello @jonraedeke,
    I can have a look into js undefined error.

  • I think we can remove the HttpOnly from this patch and keep the rest.
    Do let us know your opinion @jonraedeke

  • 🇮🇳India happy047

    Recently, I have updated to the latest [1.5] release of this module and I have also faced the same issue of cookies being undefined error.
    However, if you go to the autologout.libraries.yml file, you can see it is dependent on the libraries of [ https://www.drupal.org/project/js_cookie] module.
    You can install and enable the module and the cookie_undefined error will be resolved.

  • 🇧🇷Brazil fernandaporto

    Hello, I've re-rolled the based on the latest merge request #23 Autologout cookie is not secure Needs review

  • 🇺🇸United States japerry KVUO
  • 🇫🇷France o'briat Nantes

    So, what's left :

    • Force HttpOnly to false and remove it from the admin form
    • Update the MR with the minor fixes from 3308456-30.patch #30
    • Change the MR target branch to 2.x (or create a new one if this fix should still apply to 1.x)
  • First commit to issue fork.
  • 🇬🇧United Kingdom the_g_bomb

    I have:

    1. Updated the fork with the latest changes.
    2. Created a new branch from the new target 2.x branch
    3. Update the MR with the fixes from 3308456-30.patch #30

    So, what's left :

    Force HttpOnly to false and remove it from the admin form

  • Pipeline finished with Success
    3 months ago
    Total: 549s
    #382296
  • Pipeline finished with Success
    3 months ago
    Total: 545s
    #382297
  • Pipeline finished with Success
    3 months ago
    Total: 616s
    #382304
  • 🇺🇸United States mglaman WI, USA

    Drupal Core added the cookie_samesite to session.storage.options service parameter. This should be used over an override by autologout. Same with the cookie_lifetime value.

  • 🇺🇸United States japerry KVUO

    Marking NW per comment #38. Because of the new service parameter, this module should just those values. Note, that option was added in Drupal 10.1.

    It'd be preferable to not have additional config. To that end, samesite and lifetime settings do not need to be set. For Drupal 10+, use core's settings. For Drupal 10.0 and lower, just set a default 'Lax' and cookie lifetime to 1 month? 1 year seems long. This maintains compatibility with older versions of Drupal that likely wouldn't need anything but the defaults anyway.

    Also, shouldn't the cookie secure setting default to TRUE? Sites should be on https and only need this override in cases like https->http load balancer setups. If you're running on http and forget to set it to FALSE, not quite sure what will happen there, but not sure we should care...

  • 🇬🇧United Kingdom the_g_bomb

    Using the new service parameter also change the patch to make the module only available to Drupal 10.1 and above.
    We can backport a different solution for earlier versions if required.
    For the backport I would think we should copy the current core setting which is 200000 and set 'Lax' by default.

    I have removed the additional config for samesite and lifetime settings, but grabbed those values from core and added them to the JS settings.

    I left the cookie secure setting default to FALSE just in case sites don't have an SSL cert. I am also not sure what will happen if that is on without one, so thought it best to leave it as False as turning it on is easier than potentially debugging an error if it is on and causes problems.

  • 🇧🇷Brazil renatog Campinas

    Aware about patch link on #41 however if MR is updated the patch is updates as well

    So uploading the same patch in a file to avoid being updated. So it can be used on composer if needed

Production build 0.71.5 2024