i have an issue with mixed-content (http/https) blocking.
I have three subdomains "a", "b" and "c". Only b is available over SSL.
I have a web application with the following frame structure:
- Navigate to http://a.example.com
- Page contains an iframe to another page on http://a.example.com
- iframe makes ajax request to https://b.example.com/
- iframe sets window.location.href to https://b.example.com/
- iframe (now on https://b.example.com/ ) loads nested iframe to another page on https://b.example.com/
- Nested iframe offers an
<a href="">
directly to http://c.example.com/
The last link is blocked by browser's mixed-content security policy:
Chrome 30: [blocked] The page at https://b.example.com ran insecure content from http://c.example.com.
Firefox 23: Blocked loading mixed active content "http://c.example.com/"
How can i authorise this direct <a href="">
link to bypass mixed-content security policy?