mirror of
https://github.com/nmap/nmap.git
synced 2025-12-23 07:59:03 +00:00
o [NSE] Applied patch that fixes a nil table index bug discovered in the
mongodb library. [Thomas Buchanan]
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
# Nmap Changelog ($Id$); -*-text-*-
|
||||
|
||||
o [NSE] Applied patch that fixes a nil table index bug discovered in the
|
||||
mongodb library. [Thomas Buchanan]
|
||||
|
||||
o [NSE] Added ms-sql-dump-hashes, a script that dumps the MS SQL hashes in a
|
||||
format suitable for offline cracking. [Patrik]
|
||||
|
||||
|
||||
@@ -174,7 +174,8 @@ local function parse(code,data)
|
||||
--7 = _get_oid
|
||||
elseif 8 == code then -- Boolean
|
||||
return 2, data:byte(1) == 1
|
||||
--9 = _get_date
|
||||
elseif 9 == code then -- int64, UTC datetime
|
||||
return bin.unpack("<l", data)
|
||||
elseif 10 == code then -- nullvalue
|
||||
return 0,nil
|
||||
--11= _get_regex
|
||||
|
||||
Reference in New Issue
Block a user