diff --git a/scripts/ssl-date.nse b/scripts/ssl-date.nse index eb04f1ee3..32887bc53 100644 --- a/scripts/ssl-date.nse +++ b/scripts/ssl-date.nse @@ -57,6 +57,7 @@ local client_hello = function(host, port) cli_h = tls.client_hello({ ["protocol"] = "TLSv1.0", ["ciphers"] = { + "TLS_RSA_WITH_AES_128_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 a9dea5145..140df05f6 100644 --- a/scripts/tls-nextprotoneg.nse +++ b/scripts/tls-nextprotoneg.nse @@ -55,6 +55,7 @@ local client_hello = function(host, port) cli_h = tls.client_hello({ ["protocol"] = "TLSv1.0", ["ciphers"] = { + "TLS_RSA_WITH_AES_128_CBC_SHA", "TLS_ECDHE_RSA_WITH_RC4_128_SHA", "TLS_DHE_RSA_WITH_AES_256_CBC_SHA", "TLS_RSA_WITH_RC4_128_MD5",