Search Results for security

Disable ECDH public server param reuse in Windows Server IIS

Successfully set ECDH public server param reuse to no

...(32-bit) value Value name: EphemKeyReuseTime Value data: Set EphemKeyReuseTime value to in Windows Registry editor Using PowerShell: if(!(Test-Path "hklm:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\KeyExchangeAlgorithms\ECDH")) { New-Item "hklm:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\KeyExchangeAlgorithms" -name "ECDH" } New-ItemProperty "hklm:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\KeyExchangeAlgorithms\ECDH" -Name EphemKeyReuseTime -Value...