SSL Tips Insecure

Do you know of any tools that can be used to determine which element on the web page prompts the following prompt: "This element contains both safe and insecure elements. Do you want to display unsafe elements?"

I have a web program programmed in classic asp. On the SSL site, we get the hint above. After I looked through all my code, I changed it so that there are no calls using http. The next step in the troubleshooting process would be a tool that might find an unsafe item for me.

Any tool suggestions would be great

Thanks Brian

+4
source share
4 answers

After searching all the code again, I found an IFRAME that didn't have a source. I gave all the iframes the source of "javascript: false" and the warnings no longer appear. Thank you all for your help!

+5
source

Firebug for Firefox will show you all the requests made on the page - just look for who it is http for and what https should do the trick.

+1
source

Any absolute URLs that do not start with https: // cause this message.

Do you have any links to: empty space? about: blank will not display in Firebug because it does not connect to anything.

+1
source

You can use Fiddler to view all the HTTP requests made by the page.

0
source

Source: https://habr.com/ru/post/1303138/


All Articles