Received fatal alert: handshake_failure through SSLHandshakeException

The handshake failure could have occurred due to various reasons: Incompatible cipher suites in use by the client and the server. This would require the client to use (or enable) a cipher suite that is supported by the server. Incompatible versions of SSL in use (the server might accept only TLS v1, while the client … Read more

Not Authorized to View This Page

Reset the URLs to their http version. You can do this via PHPMYADMIN in the wp_options table by locating wp_home and wp_siteurl and adding the http:// version of your website or by adding constants in wp-config.php: Add these two lines to your wp-config.php, where “example.com” is the correct location of your site. define( ‘WP_HOME’, ‘http://example.com’ ); define( ‘WP_SITEURL’, ‘http://example.com’ ); Reference: https://wordpress.org/support/article/changing-the-site-url/#edit-wp-config-php … Read more

How to convert .crt cetificate file to .pfx

I have solved this issue by converting this .crt file into a .pfx file using following method. To convert .crt to .pfx, we need CSA certificate (Private Key) provided by hosting provider. Below are the steps to convert this: Download and install OpenSSL software from below link based on your system type https://slproweb.com/products/Win32OpenSSL.html Run the following command on command prompt:openssl pkcs12 -export -out … Read more

Received fatal alert: handshake_failure through SSLHandshakeException

The handshake failure could have occurred due to various reasons: Incompatible cipher suites in use by the client and the server. This would require the client to use (or enable) a cipher suite that is supported by the server. Incompatible versions of SSL in use (the server might accept only TLS v1, while the client … Read more

How to generate a self-signed SSL certificate using OpenSSL?

You can do that in one command: You can also add -nodes (short for no DES) if you don’t want to protect your private key with a passphrase. Otherwise it will prompt you for “at least a 4 character” password. The days parameter (365) you can replace with any number to affect the expiration date. It will then prompt you … Read more

NET::ERR_CERT_REVOKED in Chrome, when the certificate is not actually revoked

Not sure what it all means, but the answer is there: and Google revoked a Symantec certificate from Google products, but they have suspended the revocation following the type of issues you’re describing (which I also experienced). Quoting the Chromium ticket: First, the good news is the change has been temporarily reverted, and you should … Read more

Openssl : error “self signed certificate in certificate chain”

You have a certificate which is self-signed, so it’s non-trusted by default, that’s why OpenSSL complains. This warning is actually a good thing, because this scenario might also rise due to a man-in-the-middle attack. To solve this, you’ll need to install it as a trusted server. If it’s signed by a non-trusted CA, you’ll have … Read more

“PKIX path building failed” and “unable to find valid certification path to requested target”

Go to URL in your browser: firefox – click on HTTPS certificate chain (the lock icon right next to URL address). Click “more info” > “security” > “show certificate” > “details” > “export..”. Pickup the name and choose file type example.cer chrome – click on site icon left to address in address bar, select “Certificate” … Read more