Increased Security With First Party Cookies
HTTP cookies are an essential part of many web based applications, useful for tracking session and state information. But they can also be exploited to leak information to third party sites using a ...
Published Mar 30, 2018
Version 1.0Steve_McCarthy_
Historic F5 Account
Joined May 04, 2019
Steve_McCarthy_
Historic F5 Account
Joined May 04, 2019
Adrian_Pina
Mar 11, 2022Nimbostratus
Hi Chris_Olson,
If you only need to insert the SameSite attribute with the None value to every cookie, I think that the follwing iRule is simpler and could help you:
when HTTP_RESPONSE_RELEASE {
foreach mycookie [HTTP::cookie names] { HTTP::cookie attribute $mycookie insert "SameSite" "None"
}
}
Kind regards.