Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to figure out what "signed cookies" actually are. There isn't much on the net, and if I try this:

app.use(express.cookieParser('A secret'));

But still... Cookies are still 100% normal on the browser, and I don't really know what "signed" is here (I was sort of hoping to "see" some weirdness on the client, something like the data encrypted using "A secret" as salt?)

The documentation says:

Parse _Cookie_ header and populate `req.cookies`
with an object keyed by the cookie names. Optionally
you may enabled signed cookie support by passing
a `secret` string, which assigns `req.secret` so
it may be used by other middleware.

Does anybody know?

Merc.

share|improve this question

2 Answers

up vote 8 down vote accepted

The cookie will still be visible, but it has a signature, so it can detect if the client modified the cookie.

It works by creating a HMAC of the value (current cookie), and base64 encoded it. When the cookie gets read, it recalculates the signature and makes sure that it matches the signature attached to it.

If it does not match, then it will give an error.

If you want to hide the contents of the cookie as well, you should encrypt it instead (or just stores it in the server side session). I'm not sure if there is middleware for that already out there or not.

Edit

And to create a signed cookie you would use

res.cookie('name', 'value', {signed: true})

And to access a signed cookie:

req.signedCookies('name')
share|improve this answer
Thanks! But... I am not seeing the signature appended to the cookie at the moment. That is, in the client the cookie is there without a signature. Is there something I need to do to enable the cookie signing, other than including the secret message in express.cookieParser() ? – Merc Aug 10 '12 at 8:42
Hang on... I am setting the cookies with res.cookie('somethingElseAgainAndAgain', 'signed? Maybe' ); but... I doubt that's signing it! The cookieParser() middleware is there ready to parse signed cookies, but I am definitely not doing the setting right... do I have to sign them manually...? – Merc Aug 10 '12 at 8:50
That would be all that is needed, perhaps your cookie is from before you added the secret? Try removing the cookie to see if that kicks it into gear. – emostar Aug 10 '12 at 8:51
Ahh, use req.signedCookies instead of req.cookies – emostar Aug 10 '12 at 8:54
1  
It was: (res.cookie(name, value, { signed: true })) . Reporting the missing "detail" from the documentation... – Merc Aug 10 '12 at 9:03
show 3 more comments

Yup like emostar mentions it's simply to ensure that a value has not been tampered with. It's placed in a different object (req.signedCookies) to differentiate between the two, allowing the developer to show intent. If they were stored in req.cookies along with the others someone could simply craft an unsigned cookie of the same name, defeating the whole purpose of them.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.