Is there a way to disable all cookies for a Rails app? Or preferably on a controller by controller basis? My problem is regarding access of a Rails JSON api by an Adobe Lightroom plugin. Apparently the presence of any cookie data in the response from the server causes an error in Lightroom.

link|improve this question
The cookies are generally used for the CSRF protection, I think disabling them will open security holes, and it may give you problems when hitting your rails stack with a post request. Have you looked into using adobe lightroom with rails, to see if theres specific docs on that? – agmcleod Aug 30 '11 at 18:05
What is probably going to happen is that we will role our own version of CSRF to verify that communication to the server is coming from our plugin and not from random post requests. It will be stateless and token based however. I agree that disabling cookies outright does not sound good from a security standpoint but we will take precautions on our own to fill these gaps. Any ideas on how to disable them controller to controller? – andy Aug 30 '11 at 18:29
I ran into the method: reset_session. I suggest trying to put that into a before_filter, and see if it does the trick. Can also try what's recommended here: stackoverflow.com/questions/5435494/… with the session.clear. I have to admit, I'm not sure if this covers tokens or other things that rails generates. If this doesn't work, I would recommend trying to pear through either the rails guides or other documentation aspects, to see if there's some sort of config setting. Sorry that I do not have a direct answer for you. – agmcleod Aug 30 '11 at 19:20
1  
No, sorry. I think it's stupid that an API has this kind of requirement. – agmcleod Sep 1 '11 at 23:10
1  
Really? I think its stupid to be forced into sending cookie headers and setting unnecessary session data for an API that is authenticated with its own signature system and auth tokens – andy Sep 2 '11 at 5:12
show 3 more comments
feedback

1 Answer

If you're using Apache, you can turn probably turn off cookies in the response by using mod_headers, which is a standard apache mod.

Header always unset "Set-Cookie"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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