mirror of
https://github.com/nmap/nmap.git
synced 2025-12-08 21:51:28 +00:00
Removes non-existent 4th parameter from http.pipeline_go() calls
This commit is contained in:
@@ -266,7 +266,7 @@ action = function(host, port)
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- Nuclear launch detected!
|
-- Nuclear launch detected!
|
||||||
results = http.pipeline_go(host, port, requests, nil)
|
results = http.pipeline_go(host, port, requests)
|
||||||
if results == nil then
|
if results == nil then
|
||||||
return stdnse.format_output(false,
|
return stdnse.format_output(false,
|
||||||
"HTTP request table is empty. This should not happen since we at least made one request.")
|
"HTTP request table is empty. This should not happen since we at least made one request.")
|
||||||
|
|||||||
@@ -410,7 +410,7 @@ action = function(host, port)
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- Perform all the requests.
|
-- Perform all the requests.
|
||||||
local results = http.pipeline_go(host, port, all, nil)
|
local results = http.pipeline_go(host, port, all)
|
||||||
|
|
||||||
-- Check for http.pipeline error
|
-- Check for http.pipeline error
|
||||||
if(results == nil) then
|
if(results == nil) then
|
||||||
|
|||||||
Reference in New Issue
Block a user