How to disable RC4 cipher on Azure Web Roles

前端 未结 4 1861
情深已故
情深已故 2021-01-05 00:01

I have a web application that is hosted on Microsoft Azure Web-Role. How can I disable RC4 cipher?

4条回答
  •  逝去的感伤
    2021-01-05 00:55

    I see few of us discussing about Powershell and issue using forward "/" in script, but the below solves the problem. It works.

    ([Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey([Microsoft.Win32.RegistryHive]::LocalMachine,$env:COMPUTERNAME)).CreateSubKey('SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 128/128') 
    

提交回复
热议问题