We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65c732f commit cdd18b6Copy full SHA for cdd18b6
tests/web_servers/scan_localhost.py
@@ -155,9 +155,8 @@ def main(server_software_running_on_localhost: WebServerSoftwareEnum) -> None:
155
elif server_software_running_on_localhost == WebServerSoftwareEnum.IIS:
156
# TLS 1.3 is not supported by IIS
157
expected_enabled_tls_scan_commands = {
158
+ ScanCommand.TLS_1_3_CIPHER_SUITES,
159
ScanCommand.TLS_1_2_CIPHER_SUITES,
- ScanCommand.TLS_1_1_CIPHER_SUITES,
160
- ScanCommand.TLS_1_0_CIPHER_SUITES,
161
}
162
else:
163
raise ValueError(f"Unexpected value: {server_software_running_on_localhost}")
0 commit comments