CA5386:避免对 SecurityProtocolType 值进行硬编码
属性 | 值 |
---|---|
规则 ID | CA5386 |
标题 | 避免对 SecurityProtocolType 值进行硬编码 |
类别 | 安全性 |
修复是中断修复还是非中断修复 | 非中断 |
在 .NET 8 中默认启用 | 否 |
原因
如果满足以下任一条件,则会触发此规则:
- 引用了安全但硬编码的 System.Net.SecurityProtocolType 值。
- 对 SecurityProtocolType 变量赋予了代表安全协议版本的整数值。
安全值为:
- Tls12
- Tls13
规则说明
传输层安全性 (TLS) 通常使用安全超文本传输协议 (HTTPS) 保障计算机之间的通信安全。 协议版本 TLS 1.0 和 TLS 1.1 已弃用,目前使用 TLS 1.2 和 TLS 1.3。 TLS 1.2 和 TLS 1.3 将来可能也会弃用。 要确保应用程序的安全性,请避免对协议版本进行硬编码,并且至少以 .NET Framework v4.7.1 为目标。 有关详细信息,请参阅 .NET Framework 中的传输层安全性 (TLS) 最佳做法。
如何解决冲突
不要对 TLS 协议版本进行硬编码。
何时禁止显示警告
如果你的应用程序以 .NET Framework v4.6.2 或更早版本为目标,并且可能在具有不安全默认值的计算机上运行,则可禁止显示此警告。
抑制警告
如果只想抑制单个冲突,请将预处理器指令添加到源文件以禁用该规则,然后重新启用该规则。
#pragma warning disable CA5386
// The code that's violating the rule is on this line.
#pragma warning restore CA5386
若要对文件、文件夹或项目禁用该规则,请在配置文件中将其严重性设置为 none
。
[*.{cs,vb}]
dotnet_diagnostic.CA5386.severity = none
有关详细信息,请参阅如何禁止显示代码分析警告。
伪代码示例
枚举名称冲突
using System;
using System.Net;
public class ExampleClass
{
public void ExampleMethod()
{
// CA5386 violation
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
}
}
Imports System
Imports System.Net
Public Class TestClass
Public Sub ExampleMethod()
' CA5386 violation
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12
End Sub
End Class
整数值冲突
using System;
using System.Net;
public class ExampleClass
{
public void ExampleMethod()
{
// CA5386 violation
ServicePointManager.SecurityProtocol = (SecurityProtocolType) 3072; // TLS 1.2
}
}
Imports System
Imports System.Net
Public Class TestClass
Public Sub ExampleMethod()
' CA5386 violation
ServicePointManager.SecurityProtocol = CType(3072, SecurityProtocolType) ' TLS 1.2
End Sub
End Class
解决方案
using System;
using System.Net;
public class TestClass
{
public void TestMethod()
{
// Let the operating system decide what TLS protocol version to use.
// See https://learn.microsoft.com/dotnet/framework/network-programming/tls
}
}
Imports System
Imports System.Net
Public Class TestClass
Public Sub ExampleMethod()
' Let the operating system decide what TLS protocol version to use.
' See https://learn.microsoft.com/dotnet/framework/network-programming/tls
End Sub
End Class