Pete Freitag Pete Freitag

HTTP Strict Transport Security

web

An emerging standard called Strict Transport Security is starting to gain some traction among web browsers. Google Chrome supports it and Firefox is working on it (currently supported in the noscript FF extension).

So what is Strict Transport Security?

Strict Transport Security (STS) allows a web server to respond with a HTTP header indicating that it requires a secure HTTPS connection, for a given duration of time. Furthermore if there are any certificate errors on the site, or the sites embedded content with certificate errors the connection fails. This prevents the user from clicking through security exceptions.

PayPal was a big backer of this standard, and are among a small handful of sites currently using it. Here is what PayPal sends in their HTTP response headers:

Strict-Transport-Security:max-age=500

Setting a Strict Transport Security Header in ColdFusion:

To set this header in ColdFusion you can simply use the cfheader tag:

<cfheader name="Strict-Transport-Security" value="max-age=1200">

The max-age value is the number of seconds that the policy exists for before it expires in the user agent.

You can also specify that you want to include all sub domains as well using:

<cfheader name="Strict-Transport-Security" value="max-age=1200;includeSubDomains">

Like this? Follow me ↯

HTTP Strict Transport Security was first published on September 17, 2010.

If you like reading about security, http, https, ssl, or sts then you might also like:

Want Security Advisories via Email?

Advisory Week is a new weekly email containing security advisories published by major software vendors (Adobe, Apple, Microsoft, etc).