-
Notifications
You must be signed in to change notification settings - Fork 15
SameSite=none on session cookie #226
Comments
Hmm, I'm not sure we can do this. Depends on whether CherryPy which is the framework we use for the test tool supports it. I'll try to find out. |
Actually, we've locked the test framework to an older CherryPy version which don't have any support for SameSite. Since the Python framework is soon to be decommissioned I can't see us spending the time necessary to move to the latest version (Still not sure the latest version supports SameSite). |
In the end, it's just an HTTP response header, right? Loop over and add |
Right now I/we leave it to the CherryPy software to issue session cookies. Which means it all happens in the background. Out of sight for me. |
Ah, but in CherryPy, you can add a post-request filter, right? There this kinda header post-processing could occur. I worked with CherryPy years ago, and then only doing pre-request handling for authentication. It's a very flexible framework though, so I'd be surprised if there wasn't some kinda post-processing hook as well. Do you know if there is? Could that be used do you think? |
I'ver never worked with CherryPy on that level. |
The test tools session cookie does not have a
SameSite
attribute. We foresee this causing problems in some of our tests where we vary the user agent, version, and domains. We haven't seen any issues yet, but wanted to raise it given all the issues we've been seeing lately with this new cookie flag. Our suggestion is to addSameSite=None
on its session cookie.The text was updated successfully, but these errors were encountered: