Secure iframe on unsecure page in a different domain - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T10:31:45Z http://stackoverflow.com/feeds/question/229624 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/229624/secure-iframe-on-unsecure-page-in-a-different-domain 3 Secure iframe on unsecure page in a different domain Karl 2008-10-23T13:03:58Z 2008-10-23T19:17:15Z <p>Our company is looking into allowing third party sites to use our online checkout system.</p> <p>A client has stated that they would like to be able to use a lightbox style popup to display the checkout. And they would like this to be available on every page of the site, therefore mostly unsecure pages. Our checkout system and the client site are obviously on different domains.</p> <p>I'm guessing that I could use a secure iframe (using https) to display our checkout system.</p> <p>Would this iframe actually be secure?</p> <p>Is the a sensible thing to do? (my gut says no, as how can the user tell the page is secure)</p> <p>Are there any better ways to achieve this same functionality?</p> http://stackoverflow.com/questions/229624/secure-iframe-on-unsecure-page-in-a-different-domain/229638#229638 2 Answer by Greg for Secure iframe on unsecure page in a different domain Greg 2008-10-23T13:08:04Z 2008-10-23T13:08:04Z <p>Yes, the iframe would be secure, but you're correct that the customer wouldn't actually be able to tell that it's secure. On the other hand, most users can't tell if a page is secure anyway - a few images of padlocks scattered around will convince most of them.</p> <p>Could you, when they click to pop out the checkout, send them to the same url under HTTPS then pop it out (you'd need your own SSL certificate of course)?</p> http://stackoverflow.com/questions/229624/secure-iframe-on-unsecure-page-in-a-different-domain/231068#231068 1 Answer by thijs for Secure iframe on unsecure page in a different domain thijs 2008-10-23T19:17:15Z 2008-10-23T19:17:15Z <p>Have you seen how other similar checkout systems work? For example the paypal checkout on ebay? They take you trough the checkout process "full screen" and back to the original site when the transaction is complete.</p>