Disable SSLV2 In Server 08
Description:
For security reasons, you may be asked by another company to disable SSLV2 on your server. To resolve, follow these steps.
To Resolve:
-
Open the registry and create a key named “Server” under the following entry : HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0
-
Under the registry key Server, create a DWORD value named Enabled and change the value data to 00000000.
-
Reboot.
-
If that doesn’t work, try creating a DWORD value named “DisabledByDefault” and change the value data to “00000001”.
-
Reboot again.
-
Essentially:
1 2 3
reg add "HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Server" /ve /f reg add "HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Server" /t REG_DWORD /v Enabled /d 0 /f reg add "HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Server" /t REG_DWORD /v DisabledByDefault /d 1 /f
-
To Disable SSLv3: Copy and paste this to a .reg file:
1 2 3 4 5 6 7 8 9
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Client] "DisabledByDefault"=dword:00000001 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Server] "Enabled"=dword:00000000
Comments