mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
NSE: Add TLS_RSA_WITH_3DES_EDE_CBC_SHA to default ciphers
As noted (http://seclists.org/nmap-dev/2014/q3/121), some versions of Windows require a KB before supporting AES, so add a 3DES option.
This commit is contained in:
parent
453f655f89
commit
51a633ac3c
2 changed files with 2 additions and 0 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue