有什么方法可以禁用 Azure 移动服务中的弱密码?该服务在标准层中运行。发布服务器端口为 443。
我试图运行以下代码
string[] subKeys = new string[]
{
"RC4 40/128",
"RC4 56/128",
"RC4 64/128",
"RC4 128/128",
};
RegistryKey parentKey = Registry.LocalMachine.OpenSubKey(@"SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers", true);
foreach (string keyName in subKeys)
{
var newKey = parentKey.CreateSubKey(keyName);
newKey.SetValue("Enabled", 0);
newKey.Close();
}
parentKey.Close();
但得到Requested registry access is not allowed
异常
在同一链接中提到要添加executionContext="elevated" in the startup
我不确定在哪里添加此行或如何将 Web 角色应用于移动服务..