mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
Add mandatory cipher suite to appropriate scripts
The TLS standard (TLS 1.2, but also probably the others) states: > In the absence of an application profile standard specifying > otherwise, a TLS-compliant application MUST implement the cipher > suite TLS_RSA_WITH_AES_128_CBC_SHA This was causing some problems with some implementations (See http://seclists.org/nmap-dev/2014/q3/119)
This commit is contained in:
parent
d70f5b364a
commit
453f655f89
2 changed files with 2 additions and 0 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue