How To Tell What Files IE Thinks Are “nonsecure”?

前端 未结 5 1044
南笙
南笙 2020-12-10 16:04

We have a CMS system whose web interface gets served over HTTPS. This works beautifully for Firefox, but when we load it in IE6 or IE7, it complains that \"This page contain

相关标签:
5条回答
  • 2020-12-10 16:29

    Firefox has a number of bugs in mixed content detection. Generally you should try using Fiddler to spot insecure resources.

    If you install a tool I wrote (www.bayden.com/dl/scriptfreesetup.exe) you will get a different mixed content prompt which shows the exact URL of the first insecure resource on the page. That tool is basically a prototype and you should uninstall it when you're done with it.

    0 讨论(0)
  • 2020-12-10 16:31

    Use Fiddler to watch the traffic between the server and IE.

    Be sure to go to Tools > Fiddler Options... > HTTPS > and check 'Decrypt HTTPS traffic'

    Any non-HTTPS traffic generated between any server and IE should be easy to spot in the Web Sessions list.

    0 讨论(0)
  • 2020-12-10 16:32

    I used Eric's tool (thanks Eric you saved me hours...) and it turns out that IE6 treats a background image specified with a relative path as nonsecure content. Even though it actually requests it over https. So if you're stumped - converting your relative paths to absolute ones might really help...

    0 讨论(0)
  • 2020-12-10 16:36

    If you can't see anything that isn't using SSL, then this is usually down to a broken SSL certificate somewhere. I don't know of anything off-hand that will tell you what exactly what the problem is, but you can get a list of everything that's loaded easily enough.

    The media tab on Firefox's 'page info' dialog (right click on the page) will do it, it might also be worth having a go with Fiddler (which is an excellent, and extremely useful piece of software).

    0 讨论(0)
  • 2020-12-10 16:46

    Are one or more resources (CSS url-image ref overlooked easily) pointing to a subdomain that's not covered by the certificate (https://www.example.com vs https://static.example.com)?

    0 讨论(0)
提交回复
热议问题