Secure Cookies ----------------- Path ^^^^^^^ The Path directive instructs the browser to only send the cookie if provided path exists in the URL. .. _secure-1: Secure ^^^^^^^ The Secure flag instructs the browser to only send the cookie via HTTPS. HttpOnly ^^^^^^^^^ The HttpOnly flag instructs the browser to not allow any client side code to access the cookie’s contents. SameSite ^^^^^^^^^ The SameSite flag directs the browser not to include cookies on certain cross-site requests. There are two values that can be set for the same-site attribute, lax or strict. The lax value allows the cookie to be sent via certain cross-site GET requests, but disallows the cookie on all POST requests. For example cookies are still sent on links ````, prerendering ```` or iframes ``