Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find non-ssl items on an https page

Could anyone recommend a good way to discover any non-https items on an https page. Using Chrome, I'll typically look at Resources and go one-by-one, but this doesn't seem like the right away, and it's still hard to catch some things.

like image 544
dzm Avatar asked Apr 27 '12 14:04

dzm


People also ask

How do I find a website without SSL?

If you're not sure whether your site has SSL, you can easily find out by checking the URL of the site. If it starts with HTTP, you aren't secure, and if it begins with HTTPS, then your website has an SSL certificate. Some internet browsers have began publicly shaming sites without SSL.

How do you check if HTTPS is enforced?

How to confirm that my site is secured? After the HTTPS is enforced, check if the URL has HTTPS (https://) in front of the domain in your browser. The HTTPS protocol in front means that the website working over a secured connection.


1 Answers

There is a little button bottom right hand corner of the developer inspector called "Show console". The icon looks a bit like this >= (instead of 2 horizontal lines it's three)

When you click that it will show you all the insecure content items. It's probably something loading from your css. That should do the trick.

on firefox you just "view page info" and then click the media tab

screenshot

like image 91
space_balls Avatar answered Oct 21 '22 13:10

space_balls