Skip to content
cjhaas blog

Basically a place that Chris can post solutions to problems so he can easily find them later

cjhaas blog

Basically a place that Chris can post solutions to problems so he can easily find them later

How to disable legacy/unsafe SSL algorithms in Microsoft IIS

Posted on December 30, 2010 By [email protected]

One of our servers was recently audited for a certain certification and unfortunately we failed the initial test. For the most part we’re running a basic install of IIS on a Windows Server 2003 R2 Standard x64. To pass the test we had to disable the older algorithms for the SSL/TLS protocol as well as the older SSL 2.0 protocol. Disabling SSLv2 was easy but it was a little hard to read the individual algorithms that we needed to disable to compare to our report from our audit company. So below are keys that we disabled in the Ciphers key:

  • DES 56/56
  • NULL
  • RC2 40/128
  • RC4 40/128

Below is a registry snapshot that you should be able to import to do it for you. (Standard rules such as “this worked for me but it might not work for you” and “messing with the registry is dangerous so make sure you back it up first” obviously apply).

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSecurityProvidersSCHANNELCiphersDES 56/56]
"Enabled"=dword:00000000

[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSecurityProvidersSCHANNELCiphersNULL]
"Enabled"=dword:00000000

[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSecurityProvidersSCHANNELCiphersRC2 40/128]
"Enabled"=dword:00000000

[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSecurityProvidersSCHANNELCiphersRC4 40/128]
"Enabled"=dword:00000000

After making these changes restart iis and then you should test to make sure that you’re okay. To test IIS, first install OpenSSL on the machine that you want to test from. NOTE, this doesn’t have to be the server itself (and I don’t recommend it), it can be any machine that can access your server. I installed this on my workstation. Once installed make sure that you can run “openssl.exe” from the command line. If not, you’ll need to adjust your PATH environmental variable. For me the OpenSSL binary was installed to “C:Program FilesGnuWin32bin“.

In the command lines below substitute 192.168.1.1 with your server’s IP and 443 with your server’s SSL port (if for some crazy reason you changed it.)

The first step is to make sure that SSL 2.0 is disabled:

openssl s_client -connect 192.168.1.1:443 -ssl2

If you get an error about “handshake failure” then SSLv2 has been disabled. If you get a long message that includes a certificate then its still running. (Note, the registry keys above were for ciphers only, not SSLv2). To see what a successful message looks like run the same command above but change ssl2 to ssl3:

openssl s_client -connect 192.168.1.1:443 -ssl3

The next step is to test the individual ciphers:

openssl s_client -connect 192.168.1.1:443 -ssl3 -cipher EDH-RSA-DES-CBC3-SHA

That last part needed to be tested with the following 9 ciphers:

  • DHE-RSA-AES128-SHA
  • DHE-RSA-AES256-SHA
  • DES-CBC-MD5
  • DES-CBC-SHA
  • AES256-SHA
  • EXP-RC2-CBC-MD5
  • EXP-RC4-MD5
  • EDH-RSA-DES-CBC-SHA
  • EDH-RSA-DES-CBC3-SHA
openssl s_client -connect 192.168.1.1:443 -ssl3 -cipher DHE-RSA-AES128-SHA
openssl s_client -connect 192.168.1.1:443 -ssl3 -cipher DHE-RSA-AES256-SHA
openssl s_client -connect 192.168.1.1:443 -ssl3 -cipher DES-CBC-MD5
openssl s_client -connect 192.168.1.1:443 -ssl3 -cipher DES-CBC-SHA
openssl s_client -connect 192.168.1.1:443 -ssl3 -cipher AES256-SHA
openssl s_client -connect 192.168.1.1:443 -ssl3 -cipher EXP-RC2-CBC-MD5
openssl s_client -connect 192.168.1.1:443 -ssl3 -cipher EXP-RC4-MD5
openssl s_client -connect 192.168.1.1:443 -ssl3 -cipher EDH-RSA-DES-CBC-SHA
openssl s_client -connect 192.168.1.1:443 -ssl3 -cipher EDH-RSA-DES-CBC3-SHA

Assuming all of these fail with a handshake failure (and assuming I remembered all of the ones I tested) you should be set.

Uncategorized IISIIS 6.0OpenSSL

Post navigation

Previous post
Next post

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Recent Posts

  • Google open redirect
  • How to use AI to write code
  • Doctrine/Symfony MariaDB DSN connection string
  • Creating a portable copy of pdftotext from source
  • Gravity Forms shortcode getting extra line breaks when used with ACF

Recent Comments

  • jose luis on #2 – VB.Net iTextSharp Tutorial – Add an image to a document
  • Eliezer Castanon on iTextSharp slightly smarter text extraction strategy
  • javad on How to recompress images in a PDF using iTextSharp
  • MANOUS3784 on Flock is awesome
  • Sang on Flock is awesome

Archives

  • June 2026
  • October 2025
  • November 2023
  • September 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • December 2022
  • September 2022
  • April 2022
  • October 2021
  • September 2021
  • April 2021
  • January 2021
  • October 2020
  • August 2020
  • June 2020
  • May 2020
  • December 2019
  • November 2019
  • October 2019
  • July 2019
  • May 2019
  • December 2018
  • October 2018
  • July 2018
  • November 2017
  • October 2017
  • August 2017
  • July 2017
  • June 2017
  • May 2017
  • April 2017
  • March 2017
  • February 2017
  • January 2017
  • September 2015
  • December 2014
  • November 2014
  • October 2014
  • September 2014
  • August 2014
  • July 2014
  • November 2013
  • May 2013
  • April 2013
  • March 2013
  • January 2013
  • November 2012
  • October 2012
  • July 2012
  • March 2012
  • January 2012
  • October 2011
  • September 2011
  • July 2011
  • February 2011
  • December 2010
  • November 2010
  • October 2010
  • September 2010
  • August 2010
  • June 2010
  • April 2010
  • January 2010
  • December 2009
  • November 2009
  • October 2009
  • July 2009
  • June 2009
  • May 2009
  • April 2009

Categories

  • Accessibility
  • Advanced Custom Fields
  • Authorize.Net
  • BWP Minify
  • Composer
  • Crappy Google Search Results of the Day
  • CSS
  • Doctrine
  • Drupal
  • Drush
  • Elasticsearch
  • Fun links of the day
  • Google Analytics
  • Gravity Forms
  • HHVM
  • HTML
  • iTextSharp
  • JavaScript
  • Linux
  • mysql
  • nginx
  • Optimization
  • PDF
  • PdfPTable
  • PHP
  • Plugins
  • Ramblings
  • Random things I learned
  • Redis
  • Security
  • simplesamlphp
  • SQL Server
  • SSH
  • SSL/TLS/HTTPS
  • Stack Overflow
  • SVG
  • Symfony
  • Synology
  • Uncategorized
  • Unicode
  • Varnish
  • Vendi Best Practice
  • VIP
  • Weird Google Search Results
  • Windows
  • WordPress
  • WP-CLI

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
©2026 cjhaas blog | WordPress Theme by SuperbThemes