vote up 4 vote down star
1

I'm looking to implement httpOnly in my legacy ASP classic sites. Anyone knows how to do it?

flag

4 Answers

vote up 3 vote down check
Response.AddHeader "Set-Cookie", "mycookie=yo; HttpOnly"

Other options like expires, path and secure can be also added in this way. I don't know of any magical way to change your whole cookies collection, but I could be wrong about that.

link|flag
vote up 2 vote down

You need to append ";HttpOnly" to the Response cookies collection.

link|flag
It is not clear, a bit of code would be great – Eduardo Molteni Sep 11 '08 at 14:42
vote up 2 vote down

HttpOnly does very little to improve the security of web applications. For one thing, it only works in IE (Firefox "supports" it, but still discloses cookies to Javascript in some situations). For another thing, it only prevents a "drive-by" attack against your application; it does nothing to keep a cross-site scripting attack from resetting passwords, changing email addresses, or placing orders.

Should you use it? Sure. It's not going to hurt you. But there are 10 things you should be sure you're doing before you start messing with HttpOnly.

link|flag
Yes, I know. But adding one more layer of protection never hurts. – Eduardo Molteni May 28 at 14:09
vote up 0 vote down

Let me be the first to congratulate you on adding an excellent security feature to your cookies. Why more sites don't use the HttpOnly attribute, I'll never know...

link|flag

Your Answer

Get an OpenID
or

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