有没有办法从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();
来自How to disable RC4 cipher on Azure Web Roles
但是获得Requested registry access is not allowed
例外
在同一链接中提到添加executionContext="elevated" in the startup
我不确定在哪里添加此行或如何将Web角色应用于移动服务..
答案 0 :(得分:0)
这不是您可以在Azure移动服务中控制的内容。查看有关测试允许使用哪些密码的问题:https://superuser.com/questions/109213/how-do-i-list-the-ssl-tls-cipher-suites-a-particular-website-offers