How to disable RC4 cipher on Azure Web Roles

前端 未结 4 988
情书的邮戳
情书的邮戳 2021-01-05 00:05

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

4条回答
  •  春和景丽
    2021-01-05 00:56

    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') 
    

提交回复
热议问题