Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome disable SSL checking for sites? [closed]

I'm getting this warning for visiting non https site as https

enter image description here

Tried this to disable it by adding that command to shortcut target, but it doesnt work.

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" -ignore-urlfetcher-cert-requests

Is there any possible method to disable ssl check for websites ?

like image 821
user198989 Avatar asked Oct 15 '14 17:10

user198989


People also ask

How do I turn off Google certificate?

In the top "Privacy and Security section, select "More". Scroll down and select "Manage Certificates". Select the certificate or certificates to delete, then click Remove. Click Yes in the Certificates warning box.

How do I ignore SSL certificate in my browser?

If you go to Tools -> Internet Options, Advanced tab, and scroll to the bottom, you'll find an option to "Warn about certificate address mismatch", which you can disable; the change will take effect after you restart IE, and should stop the browser from complaining about the cert.


1 Answers

To disable the errors windows related with certificates you can start Chrome from console and use this option: --ignore-certificate-errors.

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --ignore-certificate-errors 

You should use it for testing purposes. A more complete list of options is here: http://peter.sh/experiments/chromium-command-line-switches/

like image 104
Enrique Palacio Avatar answered Sep 29 '22 11:09

Enrique Palacio