Script not authenticated

2

Sometimes I come across an icon in the browser bar, stating that the page is trying to load scripts from an unauthenticated source.

Why does this occur?

    
asked by anonymous 20.10.2017 / 17:04

1 answer

2

This happens when the page is https and a http-only link is used in the script's src.

Example

Page Url:

https:\wwww.minhapagina.com.br

Script used:

<script src="http:\wwww.minhapagina.com.br\meuscript.js"></script>

Toloadthescript(googlechromeexample)

Toviewtheentirepage:

  • Totherightoftheaddressbar,clickBlockedContentBlocked.
  • Inthealert,clickUploadtheentiresite.
  • Thepageloads.
  • Iftheerrormentionsscripts,youcanseetheentirepagebyclickingLoadunsafescript.

    Source: link

        
    20.10.2017 / 17:05