mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
o [NSE] Correct global access errors in afp.lua reported by Patrick Donnelly
[Patrik]
This commit is contained in:
parent
9537366a74
commit
a783565970
2 changed files with 5 additions and 3 deletions
|
|
@ -1,5 +1,8 @@
|
|||
# Nmap Changelog ($Id$); -*-text-*-
|
||||
|
||||
o [NSE] Correct global access errors in afp.lua reported by Patrick Donnelly
|
||||
[Patrik]
|
||||
|
||||
o [NSE] Correct misspelled "Capabilities.IgnoreSpaceBeforeParanthesis"
|
||||
name in the MySQL library. [Kris]
|
||||
|
||||
|
|
@ -24,7 +27,6 @@ o [NSE] New script dns-fuzz launches a fuzzing attack against DNS
|
|||
servers. Added a new category - fuzzer - for scripts like this.
|
||||
[Michael Pattrick]
|
||||
|
||||
|
||||
o [NSE] Fixed bug in rpc.lua library that incorrectly required file handles
|
||||
to be 32 octects when calling the ReadDir function. The bug was reported by
|
||||
Djalal Harouni. [Patrik]
|
||||
|
|
|
|||
|
|
@ -747,9 +747,9 @@ Proto = {
|
|||
for j = 1, 7 do
|
||||
addr = addr .. string.format("%04x:", octet[j])
|
||||
end
|
||||
addr = addr .. string.format("%04x", octet[8], port)
|
||||
addr = addr .. string.format("%04x", octet[8])
|
||||
|
||||
table.insert(result.network_addresses, temp)
|
||||
table.insert(result.network_addresses, addr)
|
||||
elseif tag == 0x07 then
|
||||
-- 16 byte ipv6 and two byte port
|
||||
local octet = {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue