I have two websites, let's say they're example.com and anotherexample.net. On anotherexample.net/page.html, I have an IFRAME SRC="http://example.com/someform.asp". That IFRAME displays a form for the user to fill out and submit to http://example.com/process.asp. When I open the form ("someform.asp") in its own browser window, all works well. However, when I load someform.asp as an IFRAME in IE 6 or IE 7, the cookies for example.com are not saved. In Firefox this problem doesn't appear.

For testing purposes, I've created a similar setup on http://newmoon.wz.cz/test/page.php .

example.com uses cookie-based sessions (and there's nothing I can do about that), so without cookies, process.asp won't execute. How do I force IE to save those cookies?

Results of sniffing the HTTP traffic: on GET /someform.asp response, there's a valid per-session Set-Cookie header (e.g. Set-Cookie: ASPKSJIUIUGF=JKHJUHVGFYTTYFY), but on POST /process.asp request, there is no Cookie header at all.

Edit3: some AJAX+serverside scripting is apparently capable to sidestep the problem, but that looks very much like a bug, plus it opens a whole new set of security holes. I don't want my applications to use a combination of bug+security hole just because it's easy.

Edit: the P3P policy was the root cause, full explanation below.

link|improve this question
a good solution indeed.. i tried creating the privacy policy.. added to my context root... and in my jsp page i am setting the header.. still am not able to get rid of that red eye.. can u help me resolving the problem.. – user902490 Sep 19 '11 at 9:48
Thanks for the demo site @Piskvor, I referenced it here on this Security.SE post that lists websites with interactive browser tests – makerofthings7 Oct 30 '11 at 13:44
@makerofthings7: YW. I'll migrate it to a non-temporary (sic!) site and will suggest an edit on Security.se, that page was a somewhat hacky proof-of-concept. – Piskvor Oct 30 '11 at 18:18
feedback

9 Answers

up vote 169 down vote accepted

I got it to work, but the solution is a bit complex, so bear with me.

What's happening

As it is, Internet Explorer gives lower level of trust to IFRAME pages (IE calls this "third-party" content). If the page inside the IFRAME doesn't have a Privacy Policy, its cookies are blocked (which is indicated by the eye icon in status bar, when you click on it, it shows you a list of blocked URLs).

the evil eye

In this case, when cookies are blocked, session identifier is not sent, and the target script throws a 'session not found' error.

(I've tried setting the session identifier into the form and loading it from POST variables. This would have worked, but for political reasons I couldn't do that.)

It is possible to make the page inside the IFRAME more trusted: if the inner page sends a P3P header with a privacy policy that is acceptable to IE, the cookies will be accepted.

How to solve it

Create a p3p policy

A good starting point is the W3C tutorial. I've gone through it, downloaded the IBM Privacy Policy Editor and there I created a representation of the privacy policy and gave it a name to reference it by (here it was policy1).

NOTE: at this point, you actually need to find out if your site has a privacy policy, and if not, create it - whethere it collects user data, what kind of data, what it does with it, who has access to it, etc. You need to find this information and think about it. Just slapping together a few tags will not cut it. This step cannot be done purely in software, and may be highly political (e.g. "should we sell our click statistics?").

(e.g. "the site is operated by ACME Ltd., it uses anonymous per-session identifiers for its operation, collects user data only if explicitly permitted and only for the following purposes, the data is stored only as long as necessary, only out company has access to it, etc. etc.").

(When editing with this tool, it's possible to view errors/omissions in the policy. Also very useful is the tab "HTML Policy": at the bottom, it has a "Policy Evaluation" - a quick check if the policy will be blocked by IE's default settings)

The Editor exports to a .p3p file, which is an XML representation of the above policy. Also, it can export a "compact version" of this policy.

Link to the policy

Then a Policy Reference file (http://example.com/w3c/p3p.xml) was needed (an index of privacy policies the site uses):

<META>
  <POLICY-REFERENCES>
    <POLICY-REF about="/w3c/example-com.p3p#policy1">
      <INCLUDE>/</INCLUDE>
      <COOKIE-INCLUDE/>
    </POLICY-REF>
  </POLICY-REFERENCES>
</META>

The <INCLUDE> shows all URIs that will use this policy (in my case, the whole site). The policy file I've exported from the Editor was uploaded to http://example.com/w3c/example-com.p3p

Send the compact header with responses

I've set the webserver at example.com to send the compact header with responses, like this:

HTTP/1.1 200 OK 
P3P: policyref="/w3c/p3p.xml", CP="IDC DSP COR IVAi IVDi OUR TST"
// ... other headers and content

policyref is a relative URI to the Policy Reference file (which in turn references the privacy policies), CP is the compact policy representation. Note that the combination of P3P headers in the example may not be applicable on your specific website; your P3P headers MUST truthfully represent your own privacy policy!

Profit!

In this configuration, the Evil Eye does not appear, the cookies are saved even in the IFRAME, and the application works.

Edit: What NOT to do, unless you like defending from lawsuits

Several people have suggested "just slap some tags into your P3P header, until the Evil Eye gives up".

The tags are not only a bunch of bits, they have real world meanings, and their use gives you real world responsibilities!

For example, pretending that you never collect user data might make the browser happy, but if you actually collect user data, the P3P is conflicting with reality. Plain and simple, you are purposefully lying to your users, and that might be criminal behavior in some countries. As in, "go to jail, do not collect $200".

A few examples (see p3pwriter for the full set of tags):

  • NOI : "Web Site does not collected identified data." (as soon as there's any customization, a login, or any data collection (***** Analytics, anyone?), you must acknowledge it in your P3P)
  • STP: Information is retained to meet the stated purpose. This requires information to be discarded at the earliest time possible. Sites MUST have a retention policy that establishes a destruction time table. The retention policy MUST be included in or linked from the site's human-readable privacy policy." (so if you send STP but don't have a retention policy, you may be committing fraud. How cool is that? Not at all.)

I'm not a lawyer, but I'm not willing to go to court to see if the P3P header is really legally binding or if you can promise your users anything without actually willing to honor your promises.

link|improve this answer
I was 95% complete, but my header only said: P3P: CP="...." and didn't include the policyref link, which made it work in IE7, but not IE6... works good now. Thanks! – AndreasKnudsen May 12 '09 at 10:17
3  
The link to the IBM editor is not working anymore. Through The Wayback Machine I was able to find this working link: www6.software.ibm.com/sdfdl/1v2/regs2/awadmin/p3peditor/Xa.2/… – ripper234 Nov 8 '11 at 10:45
feedback

I was able to make the evil eye go away by simply adding this small header to the site in the IFrame (PHP solution):

header('P3P: CP="NOI ADM DEV COM NAV OUR STP"');

Remember to press ctrl+F5 to reload your site or Explorer may still show the evil eye, despite the fact that it's working fine. This is probably the main reason why I had so many problems getting it to work.

No policy file was neccesary at all.

Edit: I found a nice blog entry that explains the problem with cookies in IFrames. It also has a quick fix in C# code: Frames, ASPX Pages and Rejected Cookies

link|improve this answer
3  
IANAL, but the P3P policy seems to be legally binding. Are you aware what you're promising to the users here, or did you just mix tags until the EvilEye disappeared? I think browser caching won't be your biggest problem with these: "NOI: Web Site does not collect identified data. STP: Information is retained to meet the stated purpose. This requires information to be discarded at the earliest time possible. Sites MUST have a retention policy that establishes a destruction time table. The retention policy MUST be included in or linked from the site's human-readable privacy policy." – Piskvor Feb 19 '10 at 17:07
9  
I must admit that I dont really care what it means, I just needed stuff to work in Explorer. The sites are our own non-public sites one of which uses a cookie to 'remember' which style to show the site in. So, yes, I just mixed tags until the evil eye disappeared. – Helo Mar 5 '10 at 11:28
Found a nice blog entry that explains the problem here: aspnetresources.com/blog/frames_webforms_and_rejected_cookies – Helo Jan 28 '11 at 13:17
1  
+1 This fixed it for our case. – Epeli Aug 23 '11 at 16:18
The increasing irrelevance of P3P. cylab.cmu.edu/files/pdfs/tech_reports/CMUCyLab10014.pdf If it's so legally binding, there'd be lawsuit precedence by now proving such. It's viewed with such high esteem that all but one of my competitors even bother posting one in the first place. They must figure that if their customers can't leave the IE setting on Medium, they aren't worth the effort. Sales lost on one site would have to be pretty high if cookies don't work, the cart dies without them. – Fiasco Labs May 22 at 16:05
show 1 more comment
feedback

This is a great topic on the issue, however I found that one important detail (which was essential at least in my case) that was not posted here or anywhere else (I apologize if I just missed it) was that the P3P line must be passed in header of EVERY file sent from the 3rd party server, even files not setting or using the cookies such as Javascript files or images. Otherwise the cookies will be blocked. I have more on this in a post here: http://posheika.net/?p=110

link|improve this answer
Hmmm, never thought of that. Good point! – Piskvor Aug 24 '10 at 6:03
feedback

Got similar problem, also went to investigate how to generate the P3P policy this morning, here is my post about how to generate your own policy and use in the web site :) http://everydayopenslikeaflower.blogspot.com/2009/08/how-to-create-p3p-policy-and-implement.html

link|improve this answer
feedback

I had this issue as well, thought I'd post the code that I used in my MVC2 project. Be careful when in the page life cycle you add in the header or you'll get an HttpException "Server cannot append header after HTTP headers have been sent." I used a custom ActionFilterAttribute on the OnActionExecuting method (called before the action is executed).

/// <summary>
/// Privacy Preferences Project (P3P) serve a compact policy (a "p3p" HTTP header) for all requests
/// P3P provides a standard way for Web sites to communicate about their practices around the collection, 
/// use, and distribution of personal information. It's a machine-readable privacy policy that can be 
/// automatically fetched and viewed by users, and it can be tailored to fit your company's specific policies.
/// </summary>
/// <remarks>
/// More info http://www.oreillynet.com/lpt/a/1554
/// </remarks>
public class P3PAttribute : ActionFilterAttribute
{
    /// <summary>
    /// On Action Executing add a compact policy "p3p" HTTP header
    /// </summary>
    /// <param name="filterContext"></param>
    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        HttpContext.Current.Response.AddHeader("p3p","CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\"");

        base.OnActionExecuting(filterContext);
    }
}

Example use:

[P3P]
public class HomeController : Controller
{
    public ActionResult Index()
    {
        ViewData["Message"] = "Welcome!";

        return View();
    }

    public ActionResult About()
    {
        return View();
    }
}
link|improve this answer
Oh now that is nice work, dude! – Owen Blacker May 3 at 14:08
feedback

One possible thing to do is to add the domain to allowed sites in tools -> internet options -> privacy -> sites: somedomain.com -> allow -> OK.

link|improve this answer
5  
Yes, if you only care that it works on your computer. Not entirely practical to suggest this to every visitor. – Piskvor Apr 19 '09 at 18:14
feedback

This post provides some commentary on P3P and a short-cut solution that reduces the problems with IE7 and IE8.

link|improve this answer
To quote the article: "it basically says “We’re not collecting any of your personal data”" - good luck with that. I have seen zero sites that actually fulfill the tokens set in that policy (not collecting any data at all, not even anonymous statistical data - server access logs, anyone?). The other policy offered is also pretty hard to achieve (you have any sort of web analytics? Bam, you just broke your P3P policy). So, the article can be summed up as "just lie blatantly, nobody cares anyway". Most useful article on the whole Internet, indeed. – Piskvor Apr 5 '11 at 13:06
To quote another part of the article: "There’s surprisingly little good, free information on the internet about P3P, compact policies, and IE7’s requirements - and IE7 gives absolutely no helpful debugging output such as why your cookie was blocked." This appears to be completely true! Having spent most of my day trying to discover why IE7/8 behaved differently than every other browser, I was extremely happy to find this post. It's probably time to realize that P3P is a dead spec, and that most people would rather just work around it. This post IS probably the most useful one on the subject. – Henrik Apr 5 '11 at 13:39
"There’s surprisingly little good, free information on the internet" - that could have been true in 2007 (when that was written),but there's a lot of information on the Internet now, even free tools that help you build the P3P policy according to your specific situation.I'm not defending P3P, but saying "eh screw it, just make it go away" can have expensive consequences (as you're making very unambiguous claims about your site).Whether P3P is actually legally binding hasn't been tested yet (IIRC),but I wouldn't want to be on the receiving end of that lawsuit. – Piskvor Apr 5 '11 at 14:00
@Piskvor The post solves the problem for most. Is it a security risk? is it a lie? well most browsers simply ignore the problem and you don't even need to create a work around. So as a minimum it's not introducing news risks – Rune FS Apr 5 '11 at 14:01
1  
@Piskvor - Please post the free P3P tools. All the ones I try to go to have been bought up by link farms and fake search. IBM pulled their free tool. P3P support seems to be like grass dieing in a drought in 2012. – Fiasco Labs May 22 at 16:11
show 3 more comments
feedback

I've implemented a full P3P policy before but didn't want go through the hassle again for a new project I was working on. I found this link useful for a simple solution to the problem, only having to specify a minimal compact P3P policy of "CAO PSA OUR":

http://blog.sweetxml.org/2007/10/minimal-p3p-compact-policy-suggestion.html

The article quotes a (now broken) link to a Microsoft kb article. The policy did the trick for me!

link|improve this answer
feedback

A better solution would be to make an Ajax call inside the iframe to the page that would get/set cookies...

link|improve this answer
1  
AJAX won't help here: any cookie handling inside the iframe is less trusted ("third-party cookies"), and in IE needs to pass through the Privacy Policy filter - no matter if you're setting cookies with AJAX calls, document.cookie manipulation or through normal pages (tested). – Piskvor Jan 7 '09 at 23:34
no, if you're make an ajax call that sets the cookies with HTTP (inside the iframe) Ie6 bypasses the security policy and sets the cookie. Please assure my solution is wrong before downvoting. – Luca Matteis Jan 8 '09 at 1:04
See newmoon.wz.cz/test/page.php .You can set cookies via AJAX, but you either a)start new session, or b)set session id from JS - a huge security hole (XSRF).My previous comment was wrong,I apologize.But,your solution looks wronger than before: making a security hole seems bad to me. – Piskvor Jan 8 '09 at 19:47
(Anything that "bypasses security policy" looks at least like a bug to me - if there is a policy, it's there for some reason. Saying "screw the security policy/user preferences, we know better" is a dangerous slippery slope. Also, would you let functionality depend on (yet) unfixed known bugs?) – Piskvor Jan 8 '09 at 20:05
Set a new session? What are you talking about? Most browser support this, without the p3p header stuff, so I don't understand how doing it through Ajax is any different... – Luca Matteis Jan 8 '09 at 20:23
show 4 more comments
feedback

protected by Piskvor Sep 19 '11 at 9:53

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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