diff --git a/scripts/ssl-date.nse b/scripts/ssl-date.nse index 32887bc53..48a70d4f4 100644 --- a/scripts/ssl-date.nse +++ b/scripts/ssl-date.nse @@ -58,6 +58,7 @@ local client_hello = function(host, port) ["protocol"] = "TLSv1.0", ["ciphers"] = { "TLS_RSA_WITH_AES_128_CBC_SHA", + "TLS_RSA_WITH_3DES_EDE_CBC_SHA", "TLS_ECDHE_RSA_WITH_RC4_128_SHA", "TLS_DHE_RSA_WITH_AES_256_CBC_SHA", "TLS_RSA_WITH_RC4_128_MD5", diff --git a/scripts/tls-nextprotoneg.nse b/scripts/tls-nextprotoneg.nse index 140df05f6..197adca17 100644 --- a/scripts/tls-nextprotoneg.nse +++ b/scripts/tls-nextprotoneg.nse @@ -56,6 +56,7 @@ local client_hello = function(host, port) ["protocol"] = "TLSv1.0", ["ciphers"] = { "TLS_RSA_WITH_AES_128_CBC_SHA", + "TLS_RSA_WITH_3DES_EDE_CBC_SHA", "TLS_ECDHE_RSA_WITH_RC4_128_SHA", "TLS_DHE_RSA_WITH_AES_256_CBC_SHA", "TLS_RSA_WITH_RC4_128_MD5",