How do i fix CVE-2016-2183

Jessica Rojas 0 Reputation points
2023-08-23T19:54:01.9133333+00:00

Hello,

I would like to figure out how to remediate CVE-2016-2183. It is the Birthday attacks against TLS ciphers with 64bit (Sweet32)

currently i did the following:

Disable-TlsCipherSuite -Name "TLS_RSA_WITH_3DES_EDE_CBC_SHA" in the regkey "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\Triple DES 168"

However, even after this is ran the vulnerability still exists. What can be done to remediate this CVE.

Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Anonymous
    2024-03-26T21:05:11.9766667+00:00

    The correct way to do this is not through the registry. Use below TlsCipherSuite cmdlet from https://learn.microsoft.com/en-us/powershell/module/tls/disable-tlsciphersuite?view=windowsserver2022-ps&viewFallbackFrom=winserver2012-ps

    Disable-TlsCipherSuite -Name 'TLS_RSA_WITH_3DES_EDE_CBC_SHA'
    
    4 people found this answer helpful.

  2. Anonymous
    2023-08-24T04:14:53.89+00:00

    Hello Jessica Rojas,

    Thank you for posting in our Q&A forum.

    Is your machine in a workgroup instead of in any domain?

    You can restart the machine to see if it helps.

    If it does not work, you can disable it by removing it from registry below: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Cryptography\Configuration\Local\SSL\00010002 and then restart the machine.
    85520-rc1.png

    Similar thread for your reference.
    https://learn.microsoft.com/en-us/answers/questions/348323/how-to-disable-3des-and-rc4-on-windows-server-2019

    Tip: Please back up registry before you change it.

    **
    After that, we can run command below to check if it is disabled successfully.

    **
    Get-TlsCipherSuite -Name 3DES

    Hope the information above is helpful. If you have any question or concern, please feel free to let us know.

    Best Regards,
    Daisy Zhou

    ==========================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.