mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
Add a "key" element to the result of ssh1.fetch_host_key.
ssh-hostkey.nse wanted this element to be present, but it was missing from SSH1 keys. This caused a crash that was reported by Dan Farmer and Florian Pelgrim. http://seclists.org/nmap-dev/2013/q3/151 http://seclists.org/nmap-dev/2013/q3/155
This commit is contained in:
parent
82df82b5fd
commit
1154495aa3
2 changed files with 8 additions and 1 deletions
|
|
@ -1,5 +1,11 @@
|
|||
# Nmap Changelog ($Id$); -*-text-*-
|
||||
|
||||
o [NSE] Made the table returned by ssh1.fetch_host_key contain a "key"
|
||||
element, like that of ssh2.fetch_host_key. This fixed a crash in the
|
||||
ssh-hostkey script reported by Dan Farmer and Florian Pelgrim. The
|
||||
"key" element of ssh2.fetch_host_key now is base64-encoded, to match
|
||||
the format used by the known_hosts file. [David Fifield]
|
||||
|
||||
o [Nsock] Handle timers and timeouts via a priority queue (using a heap)
|
||||
for improved performance. Nsock now only iterates over events which are
|
||||
completed or expired instead of inspecting the entire event set at each
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ end
|
|||
--- Fetch an SSH-1 host key.
|
||||
-- @param host Nmap host table.
|
||||
-- @param port Nmap port table.
|
||||
-- @return A table with the following fields: <code>exp</code>,
|
||||
-- @return A table with the following fields: <code>key</code>, <code>exp</code>,
|
||||
-- <code>mod</code>, <code>bits</code>, <code>key_type</code>,
|
||||
-- <code>fp_input</code>, <code>full_key</code>, <code>algorithm</code>, and
|
||||
-- <code>fingerprint</code>.
|
||||
|
|
@ -102,6 +102,7 @@ fetch_host_key = function(host, port)
|
|||
fp_input = mod:tobin()..exp:tobin()
|
||||
|
||||
return {exp=exp,mod=mod,bits=host_key_bits,key_type='rsa1',fp_input=fp_input,
|
||||
key=exp:todec()..' '..mod:todec(),
|
||||
full_key=exp:todec()..' '..mod:todec(),algorithm="RSA1",
|
||||
fingerprint=openssl.md5(fp_input)}
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue