Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firefox: "Some parts of this page are not secure, such as images." What counts as insecure?

I use the browser Firefox, and sometimes, on certain webpages, the SSL icon says "Some parts of this page are not secure, such as images." What, exactly, counts as an insecure element?

Thanks!

like image 580
Chip Thrasher Avatar asked Dec 14 '15 17:12

Chip Thrasher


People also ask

How do I fix parts of this page is not secure such as images?

SSL Insecure Content Plugin The SSL Insecure Content Fixer is one of the quickest ways to find and resolve the issue of mixed content on your WordPress website. After installing and activating the plugin, go to Settings >SSL Insecure Content to see the available settings. As recommended, try the 'Simple' setting first.

Why does my site say insecure?

The reason you are seeing the “Not Secure” warning is because the web page or website you are visiting is not providing an encrypted connection. When your Chrome browser connects to a website it can either use the HTTP (insecure) or HTTPS (secure).

How do you remove the connection for this site is not secure?

Open Chrome, type chrome://flags in the address bar, then press “Enter“. Type the word “secure” in the search box at the top to make it easier to find the setting we need. Scroll down to the “Mark non-secure origins as non-secure” setting and change it to “Disabled” to turn off the “Not Secure” warnings.


3 Answers

Anything that is delivered over an insecure channel.

What this generally means is that the developer of the web page is combining HTTP-based URLs with HTTPS-based URLs in the same page. The URLs could be for images as well as JavaScript, CSS, or anything else that can be referenced from a web page. As a user, there's not much you can do about this -- it's a warning that there is a possibility that your data could be delivered to other servers in an open, unencrypted manner over the Internet. This is a Bad Thing, but you can't do much except avoid that site, or contact the support or webmaster for the site.

If you're the developer, most of the time you can use a scheme-relative URLs when referencing images or javascript, etc.

i.e. Instead of this:

<img src="http://example.com/dot.png">

use this:

<img src="//example.com/dot.png">

YMMV.

See also: https://url.spec.whatwg.org/

like image 161
Alan McBee Avatar answered Oct 17 '22 04:10

Alan McBee


In firefox you can see in Inspect Element=>Network Tab=>Domain Columns. And also please check in Console tab too.

I hope it will solve your problem.

like image 26
Amrish Verma Avatar answered Oct 17 '22 03:10

Amrish Verma


"Insecure" simply means "not loaded via HTTPS".

This is insecure:

<img class="media-object" src="http://placehold.it/50x50">

This is secure:

<img class="media-object" src="https://placehold.it/50x50">
like image 2
Endang Taryana Avatar answered Oct 17 '22 02:10

Endang Taryana