up vote 44 down vote favorite
54
share [g+] share [fb]

Our investigations have shown us that not all browsers respect the http cache directives in a uniform manner.

For security reasons we do not want certain pages in our application to cached, ever, by the web browser. This must work for at least the following browsers:

  • Internet Explorer versions 6-8
  • FireFox versions 1.5 - 3.0
  • Safari version 3
  • Opera 9

Our requirement came from a security test. After logging out from our website you could press the back button and view cached pages.

link|improve this question

feedback

15 Answers

After a little astonishment of all the shooting in the dark in this topic, here's my contribution:

The correct minimum set of headers which works in all of the mentioned browsers is the following:

Cache-Control: no-cache, no-store, must-revalidate
Pragma: no-cache
Expires: 0

The PHP way would look like:

header('Cache-Control: no-cache, no-store, must-revalidate'); // HTTP 1.1.
header('Pragma: no-cache'); // HTTP 1.0.
header('Expires: 0'); // Proxies.

The Java/Servlet way would look like:

response.setHeader("Cache-Control", "no-cache, no-store, must-revalidate"); // HTTP 1.1.
response.setHeader("Pragma", "no-cache"); // HTTP 1.0.
response.setDateHeader("Expires", 0); // Proxies.

The ASP.NET way would look like:

Response.AppendHeader("Cache-Control", "no-cache, no-store, must-revalidate"); // HTTP 1.1.
Response.AppendHeader("Pragma", "no-cache"); // HTTP 1.0.
Response.AppendHeader("Expires", "0"); // Proxies.

The plain HTML way would look lile:

<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">

The Cache-Control is per the HTTP 1.1 spec for clients (and implicitly required by some browsers next to Expires), the Pragma is per the HTTP 1.0 spec for clients and proxies and Expires is per the HTTP 1.1 spec for clients and proxies. Other Cache-Control parameters are irrelevant if the abovementioned three are specified. The Last-Modified header is only intersting if you actually want to cache the request.

Note that when the page is served over HTTP and a header is present in both the HTTP response headers and the HTML meta tags, then the one specified in the response header will get precedence over the HTML meta tag. The HTML meta tag will only be used when the page is viewed from local disk file system. See also W3 HTML spec chapter 5.2.2. Take care with this when you don't specify them programmatically, because the webserver can namely include some default values. To verify the one and other, you can see/debug them using Firebug Net panel.

enter image description here

link|improve this answer
This does not appear to be complete. I tried this solution on IE 8 and found that the browser will load a cached version when you hit the back button. – Mike Ottum Jan 15 '10 at 2:26
Likely your testing methodology was wrong. Maybe the page was already in the cache? Maybe the headers were incorrect/overriden? Maybe you were looking at the wrong request? Etc.. – BalusC Jan 15 '10 at 3:38
would this interfere with html5 manifest files? – hvgotcodes Nov 15 '10 at 3:27
Can you do one favour, can you provid ruby code for clearing cache to all browser includes FireFox4, Safari5, Chrome. Thanks in advance... – Napster Mar 30 '11 at 4:33
@Napster: sorry, I don't do Ruby. Just read in their documentation how to set a response header. – BalusC Mar 31 '11 at 0:08
feedback
up vote 6 down vote accepted

After a bit of research we came up with the following list of headers that seemed to cover most browsers:

In ASP.NET we added these using the following snippet:

Response.ClearHeaders(); 
Response.AppendHeader("Cache-Control", "no-cache"); //HTTP 1.1
Response.AppendHeader("Cache-Control", "private"); // HTTP 1.1
Response.AppendHeader("Cache-Control", "no-store"); // HTTP 1.1
Response.AppendHeader("Cache-Control", "must-revalidate"); // HTTP 1.1
Response.AppendHeader("Cache-Control", "max-stale=0"); // HTTP 1.1 
Response.AppendHeader("Cache-Control", "post-check=0"); // HTTP 1.1 
Response.AppendHeader("Cache-Control", "pre-check=0"); // HTTP 1.1 
Response.AppendHeader("Pragma", "no-cache"); // HTTP 1.0 
Response.AppendHeader("Expires", "Mon, 26 Jul 1997 05:00:00 GMT"); // HTTP 1.0

Found from: http://forums.asp.net/t/1013531.aspx

link|improve this answer
3  
Answered your own question in three minutes. Congrats! That must be a stackoverflow.com record. – Stu Thompson Sep 8 '08 at 12:20
5  
What the hell is up with the date "Mon, 26 Jul 1997 05:00:00 GMT"? Why is everybody using the exact same "date in the past"? – bart Nov 19 '08 at 9:14
feedback

I found that all of the answers on this page still had problems. In particular, I noticed that none of them would stop IE8 from using a cached version of the page when you accessed it by hitting the back button.

After much research and testing, I found that the only two headers I really needed were:

Cache-Control: no-store
Vary: *

For an explanation of the Vary header, check out http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.6

On IE6-8, FF1.5-3.5, Chrome 2-3, Safari 4, and Opera 9-10, these headers caused the page to be requested from the server when you click on a link to the page, or put the URL directly in the address bar. That covers about 99% of all browsers in use as of Jan '10.

On IE6, and Opera 9-10, hitting the back button still caused the cached version to be loaded. On all other browsers I tested, they did fetch a fresh version from the server. So far, I haven't found any set of headers that will cause those browsers to not return cached versions of pages when you hit the back button.

Update: After writing this answer, I realized that our web server is identifying itself as an HTTP 1.0 server. The headers I've listed are the correct ones in order for responses from an HTTP 1.0 server to not be cached by browsers. For an HTTP 1.1 server, look at BalusC's answer.

link|improve this answer
feedback

The PHP documentation for the header function has a rather complete example (contributed by a third party):

    header('Pragma: public');
    header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");                  // Date in the past   
    header('Last-Modified: '.gmdate('D, d M Y H:i:s') . ' GMT');
    header('Cache-Control: no-store, no-cache, must-revalidate');     // HTTP/1.1
    header('Cache-Control: pre-check=0, post-check=0, max-age=0');    // HTTP/1.1
    header ("Pragma: no-cache");
    header("Expires: 0");
link|improve this answer
7  
This is obviously wrong. Second calls to header() for Expires, Cache-control and Pragma completely overwrite previously set values. – porneL Oct 19 '08 at 18:22
feedback

DISCLAIMER: I strongly suggest reading @BalusC's answer. After reading the following caching tutorial: http://www.mnot.net/cache_docs/ (I recommend you read it, too), I believe it to be correct. However, for historical reasons (and because I have tested it myself), I will include my original answer below:


I tried the 'accepted' answer for PHP, which did not work for me. Then I did a little research, found a slight variant, tested it, and it worked. Here it is:

header('Cache-Control: no-store, private, no-cache, must-revalidate');     // HTTP/1.1
header('Cache-Control: pre-check=0, post-check=0, max-age=0, max-stale = 0', false);  // HTTP/1.1
header('Pragma: public');
header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');                  // Date in the past  
header('Expires: 0', false); 
header('Last-Modified: '.gmdate('D, d M Y H:i:s') . ' GMT');
header ('Pragma: no-cache');

That should work. The problem was that when setting the same part of the header twice, if the false is not sent as the second argument to the header function, header function will simply overwrite the previous header() call. So, when setting the Cache-Control, for example if one does not want to put all the arguments in one header() function call, he must do something like this:

header('Cache-Control: this');
header('Cache-Control: and, this', false);

See more complete documentation here.

link|improve this answer
6  
This is full of myths. pre-check and post-check are IE-only, relevant only for cached responses, and 0 value is a no-op. max-stale is proxy request header, not server response header. Expires accepts only single value. More than one will cause this header to be ignored. – porneL Oct 19 '08 at 18:19
@porneL, will you be submitting a competing answer that deals with these myths correctly? – Oddthinking Nov 28 '08 at 1:56
2  
Holy headers batman! – Chad Grant May 1 '09 at 8:39
@Oddthinking, looks like stackoverflow.com/questions/49547/… is a competing answer. – Mike Ottum Jan 14 '10 at 23:55
feedback

And turn off Firebug network monitoring unless you want to pull all the hair out of your head.

link|improve this answer
feedback

The use of the pragma header in the response is a wives tale. RFC2616 only defines it as a request header

http://www.mnot.net/cache_docs/#PRAGMA

link|improve this answer
feedback

These directives does not mitigate any security risk. They are really intended to force UA's to refresh volatile information, not keep UA's from being retaining information. See this similar question. At the very least, there is no guarantee that any routers, proxies, etc. will not ignore the caching directives as well.

On a more positive note, policies regarding physical access to computers, software installation, and the like will put you miles ahead of most firms in terms of security. If the consumers of this information are members of the public, the only thing you can really do is help them understand that once the information hits their machine, that machine is their responsibility, not yours.

link|improve this answer
feedback

(hey, everyone: please don't just mindlessly copy&paste all headers you can find)

First of all, what you're trying to achieve should not be possible according to HTTP spec, because Back button history is not a cache:

History mechanisms and caches are different. In particular history mechanisms SHOULD NOT try to show a semantically transparent view of the current state of a resource. Rather, a history mechanism is meant to show exactly what the user saw at the time when the resource was retrieved.

Back is supposed to go back in time (to the time when user was logged in), it does not navigate forward to previously opened URL.

However, it is possible in practice, exactly due to "back after logout" panic. It works reliably in very specific circumstances:

  • Page must be delivered over HTTPS. If you're not using HTTPS, then don't bother — it won't be reliable, and your page already has a bigger security problem.
  • You must send Cache-Control: must-revalidate

You never need any of:

  • <meta> with cache headers — it's a totally useless.
  • post-check/pre-check — it's IE-only directive that only applies to cachable resources.
  • Sending same header twice or in dozen parts. Some of the worst PHP snippets out there actually replace previous headers, resulting in only last one being sent.

If you want, you could add:

  • no-store if you're sending security-sensitive information.
  • no-cache or max-age=0, which theoretically will save browsers effort caching resource which has to be revalidated (and presumably your server will always tell it's stale)
  • Expires with date in the past for HTTP/1.0 clients (although real HTTP/1.0-only clients are probably non-existent these days).
link|improve this answer
feedback

The RFC for HTTP 1.1 says the proper method is to add an HTTP Header for:

Cache-Control: no-cache

Older browsers may ignore this if they are not properly compliant to HTTP 1.1. For those you can try the header:

Pragma: no-cache

This is also supposed to work for HTTP 1.1 browsers.

link|improve this answer
The spec indicates that the response must not be reused without revalidation. It is the Cache-Control:no-store which is the official method to indicate that the response not even be stored in a cache in the first place. – AnthonyWJones Sep 19 '08 at 18:14
feedback

Setting the modified http header to some date in 1995 usually does the trick.

Here's an example:

Expires: Wed, 15 Nov 1995 04:58:08 GMT
Last-Modified: Wed, 15 Nov 1995 04:58:08 GMT
Cache-Control: no-cache, must-revalidate
link|improve this answer
1  
voted down cos 1995 is not in 1950 :-) – Simon_Weaver Nov 19 '08 at 1:33
feedback

In addition to the headers consider serving your page via https. Many browsers will not cache https by default.

link|improve this answer
feedback

I've had best and most consistent results across all browsers by setting Pragma: no-cache

link|improve this answer
feedback

The headers in the answer provided by BalusC does not prevent Safari 5 (and possibly older versions as well) from displaying content from the browser cache when using the browser's back button. A way to prevent this is to add an empty onunload event handler attribute to the body tag:

<body onunload=""> 

This hack apparently breaks the back-forward cache in Safari: Cross-browser onload event and the Back button

link|improve this answer
feedback

Use POST instead of GET. That should fix most issues.

And yes, that implies using forms instead of plain links.

link|improve this answer
1  
I'm sorry, WHAT? How's this related to anything. – the_drow Jan 15 '10 at 0:23
2  
How it relates is that in the absence of any cache-headers, POST results don't get cached. ietf.org/rfc/rfc2616.txt, section 9.5. "Responses to this method [POST] are not cacheable, unless the response includes appropriate Cache-Control or Expires header fields". The problem is POST is for creating content so it's an abuse of POST. – Tony Lee Oct 12 '10 at 17:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.