vote up 8 vote down star
7

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.

flag

73% accept rate

11 Answers

vote up 5 vote down check

WARNING: I did not exhaustively research the following answer, I simply got something going that worked and moved on. According to porneL in the comments, there may be some misleading/incorrect usages of header. I can only vouch for the parts that I explain.

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|flag
4  
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
1  
Holy headers batman! – Chad Grant May 1 at 8:39
vote up 8 vote down

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|flag
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
vote up 3 vote down

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|flag
Answered your own question in three minutes. Congrats! That must be a stackoverflow.com record. – Stu Thompson Sep 8 '08 at 12:20
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
vote up 2 vote down

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

link|flag
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
voted down cos 1995 is not in 1950 :-) – Simon Nov 19 '08 at 1:33
vote up 1 vote down

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|flag
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
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up -3 vote down

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

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

link|flag

Your Answer

Get an OpenID
or

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