This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org
Difference between revisions of "HTTP Strict Transport Security"
Daniel Black (talk | contribs) (clarify httpd config meaning) |
(→Links) |
||
Line 68: | Line 68: | ||
[https://www.owasp.org/index.php/Transport_Layer_Protection_Cheat_Sheet OWASP TLS Protection Cheat Sheet] | [https://www.owasp.org/index.php/Transport_Layer_Protection_Cheat_Sheet OWASP TLS Protection Cheat Sheet] | ||
+ | |||
+ | [https://developer.mozilla.org/en/Security/HTTP_Strict_Transport_Security Firefox STS Support] | ||
+ | |||
+ | [http://lists.w3.org/Archives/Public/public-webapps/2009JulSep/1148.html Google Chrome STS Support] | ||
+ | |||
+ | |||
[[Category:Control|Control]] | [[Category:Control|Control]] |
Revision as of 16:36, 13 July 2011
This article is a stub. You can help OWASP by expanding it or discussing it on its Talk page.
Description
HTTP Strict Transport Security (HSTS) is an opt-in security enhancement that is specified by a web application through the use of a special response header. Once a supported browser receives this header that browser will prevent any communications from being sent over HTTP to the specified domain and will instead send all communications over HTTPS.
Examples
Example of the HTTP strict transport security header
Strict-Transport-Security: max-age=60000
If all subdomains are HTTPS to then the following header is applicable:
Strict-Transport-Security: max-age=60000; includeSubDomains
Browser Support
Browser |
Lowest Version Supported |
Internet Explorer |
no support |
Firefox |
4 |
Opera |
10.50 |
Safari |
4.0 |
Chrome |
4.0.211.0 |
Server Side
The server side needs to inject the HSTS header.
For HTTP sites on the same domain it is recommended that a HSTS header be returned along with a permanent redirect to the HTTPS site.
An Apache HTTPd example that will permanently redirect a URL to the identical URL with a HTTPS scheme, and add a HSTS header for the client, is as follows:
<VirtualHost *:80> ServerAlias * Header Always set Strict-Transport-Security "max-age=16070400; includeSubDomains" RewriteEngine On RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [redirect=301] </VirtualHost>