Securing the Forms Authentication Cookie with Secure Flag
Posted by James Jardine on March 25, 2024 · Comments Off on Securing the Forms Authentication Cookie with Secure Flag
Filed under: Development, Security
Filed under: Development, Security
One of the recommendations for securing cookies within a web application is to apply the Secure attribute. Typically, this is only a browser directive to direct the browser to only include the cookie with a request if it is over HTTPS. This helps prevent the cookie from being sent over an insecure connection, ...