Tag: SSL

Technical

How to Create PFX File?

We have already seen a few articles about SSL certificate related CSR requests, Complete Certificate, export PFX certificate files from Windows Server, and extracting Private Key from PFX files. If you are familiar with Windows Server IIS Manager, you can follow my previous article to generate the PFX file. Would you want to know how […]

Technical

How to Export PFX Certificate from IIS Windows Server?

Exporting the SSL Certificate installed in the IIS Windows Server is an easy one that can accomplish in a few steps. But, why is this first to be exported? What is the purpose of exporting the PFX certificate file? We can use the PFX certificate file as the SSL certificate of website and web APIs […]

Technical

How to Create a CSR file in the IIS Windows Server?

CSR stands for Certificate Signing Request. CSR must be submitted while generating an SSL certificate from any certificate authority. Therefore, creating CSR is an important one to know for a web developer who is managing their website hosting and SSL Certificate. In this article, I will walk through the steps to create the CSR in […]

Technical

How to update strong Cipher Suites in Windows server?

Here, I have explained about the Cipher Suites, recommended cipher suites, and the how-to apply only recommended cipher suites that have a set of strong algorithms and no known security vulnerabilities in Windows Server. What is Cipher Suite? A cipher suite is a set of cryptographic encryption algorithms which provide the secure, encrypted connection over […]

Technical

How to Disable/Enable SSL/TLS protocols in Windows Server?

Find the steps to enable or disable the SSL/TLS protocols in Windows Server. Here the screenshot taken from Windows Server 2016. Same steps will be applicable for all the Windows Server version. Step 1: Open Registry Editor using the command regedit from run window. Step 2: Move to below path in the left side pane […]

Technical

How to Disable/Enable SSL/TLS protocols in Ubentu/Apache/Linux Server?

To Disable/Enable the SSL/TLS protocols those are SSL 2.0, SSL 3.0, TLS 1.0, TLS 1.1, TLS 1.2 and TLS 1.3, you should configure the SSL setting configuration file in Ubentu/Apache/Linux Server. You must first locate the SSL configuration file location. You can find the configuration file in below path, /etc/apache2/sites-enabled/*.conf Note: If not found check […]

Technical

TLS v1.0 and TLS v1.1 Support will be Stopped

TLS v1.0 and TLS v1.1 protocol will be removed from all the browsers very soon. This will be expected to remove at the beginning of 2020. Find the deadline provided by each browser for disabling TLS v1.0 and TLS v1.1. The percentage of connections made using protocol TLS v1.0 and TLS v1.1 on each popular […]

Technical

Basic of Transport Layer Security (TLS)/Secure Sockets Layer (SSL)

Transport Layer Security (TLS) is a protocol which used to communicate between client and server over internet. This protocol ensures the data integrity, security, privacy and data encryption between the connections. So, the HTTPS requests and responses are communicated securely using this TLS protocol. Transport Layer Security (TLS) is next generation of SSL protocol. SSL […]

Technical

How to Upload SSL certificate to Amazon Web Service(AWS) IAM using command line interface

Here I will explain the steps to upload the custom SSL certificate to Amazon Web Service (AWS) Identity and Access Management (IAM) using Amazon Command Line interface. Step 1: First use should install the command line interface to your machine. Below the URL, you can get the setup for Windows both 64 and 32 bits. […]

Back To Top