mirror of
https://github.com/nmap/nmap.git
synced 2025-12-07 13:11:28 +00:00
Use correct default buffer position. Closes #2086
This commit is contained in:
@@ -3,6 +3,12 @@
|
|||||||
o [NSE][GH#2084] MQTT library was using incorrect position when parsing
|
o [NSE][GH#2084] MQTT library was using incorrect position when parsing
|
||||||
received responses [tatulea]
|
received responses [tatulea]
|
||||||
|
|
||||||
|
o [NSE][GH#2086] IPMI library was using incorrect position when parsing
|
||||||
|
received responses [Star Salzman]
|
||||||
|
|
||||||
|
o [NSE][GH#2086] Scripts ipmi-brute and deluge-rpc-brute were not capturing
|
||||||
|
successfully brute-forced credentials [Star Salzman]
|
||||||
|
|
||||||
o Allow resuming IPv6 scans with --resume. The address parsing was assuming IPv4
|
o Allow resuming IPv6 scans with --resume. The address parsing was assuming IPv4
|
||||||
addresses, leading to "Unable to parse ip" error. In a related fix, MAC addresses
|
addresses, leading to "Unable to parse ip" error. In a related fix, MAC addresses
|
||||||
will not be parsed as IP addresses when resuming from XML. [Daniel Miller]
|
will not be parsed as IP addresses when resuming from XML. [Daniel Miller]
|
||||||
|
|||||||
@@ -174,7 +174,7 @@ least-significant byte first.
|
|||||||
|
|
||||||
parse_channel_auth_reply = function(reply)
|
parse_channel_auth_reply = function(reply)
|
||||||
local data = {}
|
local data = {}
|
||||||
local pos = 0
|
local pos = 1
|
||||||
local value
|
local value
|
||||||
|
|
||||||
data.rmcp_version,
|
data.rmcp_version,
|
||||||
@@ -231,7 +231,7 @@ end
|
|||||||
|
|
||||||
parse_open_session_reply = function(reply)
|
parse_open_session_reply = function(reply)
|
||||||
local data = {}
|
local data = {}
|
||||||
local pos = 0
|
local pos = 1
|
||||||
local value
|
local value
|
||||||
|
|
||||||
-- 4 bytes Header
|
-- 4 bytes Header
|
||||||
@@ -267,7 +267,7 @@ end
|
|||||||
|
|
||||||
parse_rakp_1_reply = function(reply)
|
parse_rakp_1_reply = function(reply)
|
||||||
local data = {}
|
local data = {}
|
||||||
local pos = 0
|
local pos = 1
|
||||||
local value
|
local value
|
||||||
|
|
||||||
-- 4 bytes Header
|
-- 4 bytes Header
|
||||||
|
|||||||
Reference in New Issue
Block a user