CME-403

TLS 1.3 Enforcement

Description

Restricts all TLS connections to TLS 1.3 minimum, eliminating protocol downgrade attacks and leveraging TLS 1.3's reduced handshake, mandatory forward secrecy, and encrypted extensions.

CVSS Vector Impacts

Metric Transition Rationale
Attack Complexity (AC) L H TLS downgrade attacks impossible; forward secrecy mandatory

CWE Relationships

Verification

Verify minimum TLS version is 1.3

$ openssl s_client -connect localhost:443 -tls1_2 </dev/null 2>&1 | grep 'handshake failure'
# Expected: handshake failure
Platform: any
$ [Net.ServicePointManager]::SecurityProtocol -band [Net.SecurityProtocolType]::Tls13
# Expected: Tls13
Platform: windows

Applicability (CVE 5.2.0 Schema)

Vendor Product CPEs Platforms Status
microsoft windows cpe:2.3:o:microsoft:windows_10:*:*:*:*:*:*:*:*
cpe:2.3:o:microsoft:windows_11:*:*:*:*:*:*:*:*
cpe:2.3:o:microsoft:windows_server_2019:*:*:*:*:*:*:*
cpe:2.3:o:microsoft:windows_server_2022:*:*:*:*:*:*:*
All applicable
← CME-402: FIPS 140-3 Mode CME-404: Certificate Pinning →