197k views
4 votes
How to set samesite cookie attribute

User Roy Goode
by
8.4k points

1 Answer

7 votes

Final answer:

To set the SameSite attribute for cookies, use 'SameSite=Lax' or 'SameSite=Strict' for enhanced security, or 'SameSite=None' with 'Secure' for cross-site requests. You can set the attribute in server-side languages like PHP or with client-side JavaScript, ensuring that 'Secure' is used if 'SameSite=None' is set.

Step-by-step explanation:

To set the SameSite attribute for cookies, you can use either server-side scripts like PHP, or client-side JavaScript. The SameSite attribute can take one of three values: Strict, Lax, or None. To protect against CSRF attacks, it is recommended to use SameSite=Lax or SameSite=Strict. If a cookie needs to be sent in requests initiated by third-party websites, set SameSite=None along with the Secure attribute to ensure the cookie is only sent over HTTPS.

In PHP, you can set the SameSite attribute like this:

setcookie('name', 'value', [
'samesite' => 'Lax', // Or 'Strict' or 'None'
'secure' => true, // Required if SameSite is 'None'
'httponly' => true // Optional, enhances security by preventing access to cookie via JavaScript
]);

In JavaScript, the SameSite attribute can be set when creating a cookie like this:

document.cookie = "name=value; SameSite=Lax; Secure;"; // Will not allow the cookie to be sent by cross-site requests

Remember, setting SameSite=None without Secure can result in the cookie being rejected by the browser.

User Lifu Huang
by
8.6k points