Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any tool available to detect what's not HTTPS on an encrypted page?

Tags:

ssl

More often than I like when designers edit some of our sites' pages, they include javascript or an external image our SSL pages that are not encrypted. For example if we have a page like this:

https://www.example.com/cart/EnterCreditCard

And the designer includes some non-encrypted image like this:

<img src='http://www.cardprocessor.com/logo.gif' />

Of course, this creates errors in all browsers:

  • IE: Do you want to view only the webpage content that was delivered securely?
  • Firefox: Connection Partially Encrypted
  • Chrome: (I forget this message)

What I'm looking for is a tool or plugin that lets me easily see what objects are not encrypted. A firefox extension or something along those lines would be great.

Edit: Ben pointed me in the right direction. If you're using Chrome, do a Ctrl-Shift-J to bring up the developer tools. Then click on Resources to see all the items on the page.

like image 535
Keltex Avatar asked Apr 13 '10 20:04

Keltex


People also ask

What is the best way to confirm that your connection to a website is encrypted?

Look for a lock icon near your browser's location field. The lock symbol and related URL containing “https” simply mean that the connection between your web browser and the website server is encrypted, which is important.

How do you solve You are seeing this warning because this site does not support HTTPS?

The only way to solve the issue is for the website operator to obtain a TLS certificate and enable HTTPS on their site. This will allow your browser to connect securely with the HTTPS protocol, which it will do automatically once the website is properly configured.


1 Answers

For completeness, since Firefox was mentioned:

If you use Firefox with firebug installed, you see all of the assets downloaded on the Net panel. Hovering over each line gives you the full URL, so you can quickly scan for those http: lines.

like image 62
grossvogel Avatar answered Jan 04 '23 02:01

grossvogel