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"
(Opera 12 supports HSTS according to Wikipedia) |
m (minor adjustments) |
||
Line 21: | Line 21: | ||
|- | |- | ||
| '''Browser'''<br> | | '''Browser'''<br> | ||
− | | ''' | + | | '''Support Introduced'''<br> |
|- | |- | ||
| Internet Explorer <br> | | Internet Explorer <br> | ||
− | | no support<br> | + | | no support as of IE 10 (tested on 2013-01-01)<br> |
|- | |- | ||
| Firefox<br> | | Firefox<br> | ||
Line 67: | Line 67: | ||
HSTS addresses the following threats: | HSTS addresses the following threats: | ||
− | * User bookmarks or manually types http:// | + | * User bookmarks or manually types http://example.com and is subject to a man-in-the-middle attacker |
** HSTS automatically upgrades HTTP requests to HTTPS for the target domain | ** HSTS automatically upgrades HTTP requests to HTTPS for the target domain | ||
* Web application that is intended to be purely HTTPS inadvertently contains HTTP links or serves content over HTTP | * Web application that is intended to be purely HTTPS inadvertently contains HTTP links or serves content over HTTP | ||
Line 77: | Line 77: | ||
== Links == | == Links == | ||
− | [http://dev.chromium.org/sts Chromium Projects / HSTS] | + | [http://dev.chromium.org/sts Chromium Projects/HSTS] |
[http://tools.ietf.org/html/draft-ietf-websec-strict-transport-sec HSTS Spec] | [http://tools.ietf.org/html/draft-ietf-websec-strict-transport-sec HSTS Spec] | ||
− | [http://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security Wikipedia | + | [http://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security Wikipedia] |
− | [https://developer.mozilla.org/en/Security/HTTP_Strict_Transport_Security | + | [https://developer.mozilla.org/en/Security/HTTP_Strict_Transport_Security Mozilla Developer Network] |
[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] |
Revision as of 14:44, 3 April 2013
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. It also prevents HTTPS click through prompts on browsers.
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 |
Support Introduced |
Internet Explorer |
no support as of IE 10 (tested on 2013-01-01) |
Firefox |
4 |
Opera |
12 |
Safari |
?? |
Chrome |
4.0.211.0 |
Server Side
The web server side needs to inject the HSTS header.
For HTTP sites on the same domain it is not recommended to add a HSTS header but to do a permanent redirect (301 status code) to the HTTPS site.
An Apache HTTPd example that will permanently redirect a URL to the identical URL with a HTTPS scheme, is as follows:
<VirtualHost *:80> ServerAlias * RewriteEngine On RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [redirect=301] </VirtualHost>
On the HTTPS site configuration the following is needed to add the header as recommended by the standard:
Header set Strict-Transport-Security "max-age=16070400; includeSubDomains"
The following links show how to do set response headers in other web servers:
Threats
HSTS addresses the following threats:
- User bookmarks or manually types http://example.com and is subject to a man-in-the-middle attacker
- HSTS automatically upgrades HTTP requests to HTTPS for the target domain
- Web application that is intended to be purely HTTPS inadvertently contains HTTP links or serves content over HTTP
- HSTS automatically upgrades HTTP requests to HTTPS for the target domain
- A man-in-the-middle attacker attempts to intercept traffic from a victim user using an invalid certificate and hopes the user will accept the bad certificate
- HSTS does not allow a user to override the invalid certificate message