From ebf0a603709c1beb996c6811b511734729858498 Mon Sep 17 00:00:00 2001 From: Leandro Barragan Date: Fri, 13 Dec 2019 17:00:22 -0800 Subject: [PATCH] Added a warning when the server accepts TLSv1.0 --- Src/Report.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Src/Report.cs b/Src/Report.cs index 24dadad..0e39961 100644 --- a/Src/Report.cs +++ b/Src/Report.cs @@ -472,6 +472,9 @@ internal void Analyse() if (suites.ContainsKey(M.SSLv30)) { warnings["PV003"] = "Server supports SSL 3.0."; } + if (suites.ContainsKey(M.TLSv10)) { + warnings["PV006"] = "Server supports TLS 1.0."; + } if (unknownSKE) { warnings["SK001"] = "Some Server Key Exchange messages" + " could not be processed.";