Is there a way to make Firefox ignore invalid ssl-certificates?

后端 未结 9 542
暖寄归人
暖寄归人 2020-12-13 03:07

I am maintaining a few web applications. The development and qa environments use invalid/outdated ssl-certificates.

Although it is generally a good thing, that Firef

相关标签:
9条回答
  • 2020-12-13 04:04

    I ran into this issue when trying to get to one of my companies intranet sites. Here is the solution I used:

    1. enter about:config into the firefox address bar and agree to continue.
    2. search for the preference named security.ssl.enable_ocsp_stapling.
    3. double-click this item to change its value to false.

    This will lower your security as you will be able to view sites with invalid certs. Firefox will still prompt you that the cert is invalid and you have the choice to proceed forward, so it was worth the risk for me.

    0 讨论(0)
  • 2020-12-13 04:08

    The MitM Me addon will do this - but I think self-signed certificates is probably a better solution.

    0 讨论(0)
  • 2020-12-13 04:10

    Create some nice new 10 year certificates and install them. The procedure is fairly easy.

    Start at (1B) Generate your own CA (Certificate Authority) on this web page: Creating Certificate Authorities and self-signed SSL certificates and generate your CA Certificate and Key. Once you have these, generate your Server Certificate and Key. Create a Certificate Signing Request (CSR) and then sign the Server Key with the CA Certificate. Now install your Server Certificate and Key on the web server as usual, and import the CA Certificate into Internet Explorer's Trusted Root Certification Authority Store (used by the Flex uploader and Chrome as well) and into Firefox's Certificate Manager Authorities Store on each workstation that needs to access the server using the self-signed, CA-signed server key/certificate pair.

    You now should not see any warning about using self-signed Certificates as the browsers will find the CA certificate in the Trust Store and verify the server key has been signed by this trusted certificate. Also in e-commerce applications like Magento, the Flex image uploader will now function in Firefox without the dreaded "Self-signed certificate" error message.

    0 讨论(0)
提交回复
热议问题