Signed cookie value is assigning with false when cookie secret is updated
Issue in detail:
Let's say a signed cookie is created with ['abc'] secret using cookie-parser module and save on the browser's cookie storage. Later on, due to the reason of cookie secret compromise, the user needs to change the cookie secret for e.g., ['xyz'] on the express server.
Now, the server is re-started with the updated cookie secret ['xyz'] and the user tries to fire an HTTP request method via browser on the same domain on another API endpoint of the server. As the signed cookie created with ['abc'] secret already exists on the browser's cookie storage (Assume the cookie is not expired), the same signed cookie is included by the browser under the req object and express server receives the same under req.headers.cookie.
In this case, as the cookie secret is updated, the cookie-parser module's middleware function will not be able to parse that signed cookie. I have gone through signedCookies(obj, secret){} function defined under the same module and found that in this particular case, the function is populating req.signedCookies object with key cookieName and value false.
Since that signed cookie is unable to parse with the updated secret, the signedCookies(obj, secret){} function should not include this scenario-type signed cookies under req.signedCookies object as they become invalid post cookie secret updation.
The bug is reproducible by the below steps included with screenshots:
- Initialize
cookieParser()with secret'abc'usingconst cookieParser = require('cookie-parser');const express = require('express');const app = express();app.use(cookieParser('abc')); - Create a signed cookie and return the response using
return res.cookie('csrf', 'csrfToken', { expires: new Date(Date.now() + 30 * 60 * 1000), httpOnly: true, signed: true }); - Update and save new cookie secret
'xyz'usingapp.use(cookieParser('xyz')); - Restart the express server.
- Use browser to send HTTP request on the same server's domain on another API endpoint of the server.
- The server gets the browser request and the request goes through
cookieParser(req, res, next)middleware ofcookie-parsermodule. - Execution flow comes under the module function
signedCookies (obj, secret){}, this function does not handle possible values ofvar decforundefinedandfalsereturned bysignedCookie(val, secret){}function. - In this context,
falsevalue is returned bysignedCookie(val, secret){}function ascookie-signaturemodule is unable to unsign that signed cookie with the updated secret and thus returnsfalse. As the validation forundefinedandfalsevalues are not implemented, thereq.signedCookiesobject is populated with that signed cookie consequently having cookie name ascsrfand cookie value asfalse.
Fixing the bug:
Handle the validation of afore-mentioned undefined and false values in such a way that all signed cookies possessing the scenario described above can be ignored and should neither be included in req.cookies nor in req.signedCookies objects as they become invalid post cookie secret updation.
I have already worked to fix this bug and will soon create a pull request tagging this issue no. as reference.
@dougwilson Kindly check on my careful observations and provide your meaning inputs on the same. If my work looks correct and appreciable, please merge my pull request which I will be creating after posting this issue.
This is not a bug, the behavior is as described in the documentation
@dougwilson Thanks for checking and providing your feedback. Somehow, I missed to read this specific part in the module documentation.
I have one query and its related to encryption of the cookies. As of now, I can see cookie-parser module is using encoding techniques to sign a cookie using cookie-signature module. We can implement cookie encryption as a new feature which will provide a more secured way of cookie creation and transmission from server to client and vice versa.
Is this feature already in draft or if anyone has been already assigned? In case if not, could you assign this work to me so that I will work towards it and contribute to this module.
Let me know if this new feature works for you?
I no longer work on this project. Just do what you want to contribute and someone will get back to you.
I am not sure. But you don't need to tag people to interact with a project, as those who are working on it will see your issues and stuff.
Sure, thanks for the information. I will start working on the new feature.