Giter Club home page Giter Club logo

Comments (5)

jed avatar jed commented on July 18, 2024

hmm. this is a good point. i'm not sure there's much we can do other than giving a heads-up in the README. what do you think?

from cookies.

jspilman avatar jspilman commented on July 18, 2024

The only way to deal with it transparently is to encode the options in the .sig, and then add another signature of the options as well.

 if (signed) {
  cookie.value = cookie.toSig();
  cookie.name += ".sig"
  headers = pushCookie(headers, cookie)
}
   toSig: function() {
      var options = JSON.stringify({ path: this.path, expires: this.expires, domain: this.domain, secure: this.secure })
      return JSON.stringify({
          sig: sign(cookie.toString()),
          opts: options,
          optsSig: sign(options)
      })
  }

Then you would have to pull out the β€˜opts’ from the .sig cookie and use them when re-creating the .sig with a new signing key to keep the settings consistent.

Maybe not so bad when it’s all said and done.

from cookies.

jed avatar jed commented on July 18, 2024

good point, @jspilman. i'm a little queasy about bloating the scope of the .sig cookie with this much state, to be honest. perhaps we'd be better of with opt-in defaults for a specific cookie implementations?

from cookies.

HugoDellinger avatar HugoDellinger commented on July 18, 2024

This bug has been causing us quite a lot of troubles. I think this should be fixed as soon as possible.

from cookies.

rchampeimont avatar rchampeimont commented on July 18, 2024

This problem has caused trouble in our production website. We use expressjs/cookie-session (which uses this module as a dependency) and set the cookie to expire in 1 year (we have a server-side system to expire sessions). We rotated the key but then the session.sig gets to expire at browser close instead of 1 year when uses comes back and session is re-signed. Then uses closes his browser and comes back and is logged out (which we don't want). We have taken several hours to find the cause of this issue and finally found this.

from cookies.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.