From 392780e36014b9d9ffa22aa98a915e7ecbd5937c Mon Sep 17 00:00:00 2001 From: Egon Okerman Date: Fri, 8 Mar 2024 17:40:39 +0100 Subject: [PATCH] Fix typo --- rules/S5527/python/how-to-fix-it/std.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/S5527/python/how-to-fix-it/std.adoc b/rules/S5527/python/how-to-fix-it/std.adoc index 315ccadd62..d3bf1427c5 100644 --- a/rules/S5527/python/how-to-fix-it/std.adoc +++ b/rules/S5527/python/how-to-fix-it/std.adoc @@ -25,7 +25,7 @@ ctx2 = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2) # Noncompliant ---- import ssl -# By default, certificate validation is enabled +# By default, hostname verification is enabled ctx1 = ssl.create_default_context() ctx2 = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2)