From 70bc4c81a08984007c94e9f524ea751f3ed82f4e Mon Sep 17 00:00:00 2001 From: Slavomir Date: Mon, 22 Jun 2020 17:15:56 +0300 Subject: [PATCH] Fix typo --- ql/src/experimental/CWE-327/InsecureTLS.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ql/src/experimental/CWE-327/InsecureTLS.go b/ql/src/experimental/CWE-327/InsecureTLS.go index 5163fd641d9..41235c8b4ee 100644 --- a/ql/src/experimental/CWE-327/InsecureTLS.go +++ b/ql/src/experimental/CWE-327/InsecureTLS.go @@ -24,7 +24,7 @@ func insecureMinMaxTlsVersion() { func insecureCipherSuites() { config := &tls.Config{ CipherSuites: []uint16{ - tls.TLS_RSA_WITH_RC4_128_SHA, // BAD: TLS_RSA_WITH_RC4_128_SHA is one of the non-secure chiper suites; it's not safe to be used. + tls.TLS_RSA_WITH_RC4_128_SHA, // BAD: TLS_RSA_WITH_RC4_128_SHA is one of the non-secure cipher suites; it's not safe to be used. }, } _ = config