flatpress icon indicating copy to clipboard operation
flatpress copied to clipboard

Fixes: There is no Cookie Prefix on this cookie

Open Fraenkiman opened this issue 1 year ago • 0 comments

Fixes #155

  • Creates a more robust cookie with __secure- prefix and increases the acceptance of compatible browsers.

fp-cookie

This prefix is the more relaxed in terms of the restrictions it applies but is still useful. You simply prefix your cookie and a compliant browser will enforce it:

Set-Cookie: __Secure-sess=123; path=/; Secure

The __secure prefix signals to the browser that the SecureAttribute is required.

Fraenkiman avatar Jun 11 '23 22:06 Fraenkiman