Showing posts with label TLS Connection. Show all posts
Showing posts with label TLS Connection. Show all posts

Online Payment - Expiring TLS 1.0 (Windows)

For those wanting to migrate their .NET 2.0 framework to use TLS 1.2 you need to install hotfixes on your server:
Windows Vista and Windows Server 2008
Windows 7 and Windows Server 2008 R2
Windows Server 2012
Windows 8.1 and Windows Server 2012 R2
Once the hotfix is installed you can either make registry changes on the server as indicated OR make code changes in your app to reference TLS 1.2 directly.
C# ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;
VB ServicePointManager.SecurityProtocol = DirectCast(3072,System.Net.SecurityProtocolType)

How to identify the Cipher used by an HTTPS Connection

Instructions

Using a browser to open an HTTPS page and check the certificate properties to find the type of Cipher used to encrypt the connection.

How to find the Cipher in Internet Explorer

  1. Launch Internet Explorer.
  2. Enter the URL you wish to check in the browser.
  3. Right-click the page or select the Page drop-down menu, and select Properties. 
  4. In the new window, look for the Connection section. This will describe the version of TLS or SSL used.

How to find the Cipher in Chrome

  1. Launch Chrome.
  2. Enter the URL you wish to check in the browser.
  3. In the address bar, click the icon to the left of the URL.
  4. Look for the line "The connection uses...". This will describe the version of TLS or SSL used.

How to find the Cipher in FireFox

  1. Launch FireFox.
  2. Enter the URL you wish to check in the browser.
  3. In the address bar, click the icon to the left of the URL.
  4. Now click on More Information.
  5. Select the Security tab.
  6. Look for the Technical details section. This will describe the version of TLS or SSL used.

If you are interested in HTTPS ciphers, you should be monitoring your web server. GSX Monitor will carefully observe the processes and services of your IIS and Windows servers to prevent potential issues from arising.
Why not sign up for a free trial?