mirror of
https://github.com/nmap/nmap.git
synced 2025-12-08 21:51:28 +00:00
Fix compressor names in ssl-enum-ciphers.nse.
patch from Matt Selsky in http://seclists.org/nmap-dev/2011/q2/1235.
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
# Nmap Changelog ($Id$); -*-text-*-
|
# Nmap Changelog ($Id$); -*-text-*-
|
||||||
|
|
||||||
|
o [NSE] Fixed SSL compressor names in ssl-enum-ciphers.nse. [Matt Selsky]
|
||||||
|
|
||||||
o [NSE] Added cipher strength ratings to ssl-enum-ciphers.nse.
|
o [NSE] Added cipher strength ratings to ssl-enum-ciphers.nse.
|
||||||
[Gabriel Lawrence]
|
[Gabriel Lawrence]
|
||||||
|
|
||||||
|
|||||||
@@ -153,11 +153,12 @@ TLS_HANDSHAKETYPE_REGISTRY = {
|
|||||||
|
|
||||||
--
|
--
|
||||||
-- Compression Algorithms
|
-- Compression Algorithms
|
||||||
|
-- http://www.iana.org/assignments/comp-meth-ids
|
||||||
--
|
--
|
||||||
COMPRESSORS = {
|
COMPRESSORS = {
|
||||||
["uncompressed"] = 0,
|
["NULL"] = 0,
|
||||||
["ansiX962_compressed_prime"] = 1,
|
["DEFLATE"] = 1,
|
||||||
["ansiX962_compressed_char2"] = 2
|
["LZS"] = 64
|
||||||
}
|
}
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|||||||
Reference in New Issue
Block a user