mirror of
https://github.com/nmap/nmap.git
synced 2025-12-07 13:11:28 +00:00
Fixed a bug in http-userdir-enum (was missing an argument to http.pipeline_add())
This commit is contained in:
@@ -78,9 +78,9 @@ action = function(host, port)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if(use_head) then
|
if(use_head) then
|
||||||
all = http.pipeline_add("/~" .. usernames[i], nil, 'HEAD')
|
all = http.pipeline_add("/~" .. usernames[i], nil, all, 'HEAD')
|
||||||
else
|
else
|
||||||
all = http.pipeline_add("/~" .. usernames[i], nil, 'GET')
|
all = http.pipeline_add("/~" .. usernames[i], nil, all, 'GET')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user