vote up 2 vote down star

I am trying to delete the clientside session cookie when I access a certain page. How do I do this?

flag

77% accept rate

3 Answers

vote up 9 vote down check

Do you mean the CFID and CFTOKEN cookies? Or the Sessions struct? You can expire the cookies like this:

<cfcookie name="CFID" value="" expires="NOW" />
<cfcookie name="CFTOKEN" value="" expires="NOW" />

but if you want to clear the session scope you should do this:

<cfscript>
structClear(Session);
</cfscript>
link|flag
vote up 1 vote down

See slide 34: http://slidesix.com/view/ColdFusion-Application-Security-The-Next-Step

link|flag
vote up 1 vote down

Set the cookie again, with blank data and an expiry date of now.

<cfcookie name="cookie_name" value="" expires="now" />

It will remain for the rest of the request, and then it should go.

link|flag

Your Answer

Get an OpenID
or

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