vote up 6 vote down star
8

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.

flag

7 Answers

vote up 12 vote down check

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).

(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, 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

Profit!

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

link|flag
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 at 10:17
vote up -1 vote down

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

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

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

link|flag
Yes, if you only care that it works on your computer. Not entirely practical to suggest this to every visitor. – Piskvor Apr 19 at 18:14
vote up -1 vote down

I have same problem, if have please contact my by email: dinhnguunguyen@gmail.com for having my code (I can not post here)

link|flag
This was not an answer, please use comments for posts like this – Matt Sep 8 at 19:12
vote up 0 vote down

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

is there any way to achieve this? like using alternative to iframe if exist?

link|flag
vote up 0 vote down

This article was really helpful.

I had a session cookie problem in an Iframe in IE.

In case it helps anyone, these were the settings that I used after I generated the policy:

My p3p.xml file was this:

<META>
  <POLICY-REFERENCES>
    <POLICY-REF about="/w3c/privacy_policy.p3p">
       <INCLUDE>http://full_path_to_domain/*</INCLUDE> 
       <COOKIE-INCLUDE name="*" value="*" domain="*" path="*" /> 
    </POLICY-REF>
  </POLICY-REFERENCES>
</META>

To send the headers I used this in .htaccess:

<IfModule mod_headers.c>
Header set P3P "policyref=\"http://full_pathway_to_/w3c/p3p.xml\", CP=\"ALL DSP COR CURa ADMa DEVa TAIa IVAi IVDi CONi HISi TELi OUR IND PHY ONL FIN COM NAV INT DEM GOV\""
</IfModule>

All files in a /w3c/ folder in the root.

Happy days.

link|flag

Your Answer

Get an OpenID
or

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