mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 04:31:29 +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
|
||||
|
||||
if(use_head) then
|
||||
all = http.pipeline_add("/~" .. usernames[i], nil, 'HEAD')
|
||||
all = http.pipeline_add("/~" .. usernames[i], nil, all, 'HEAD')
|
||||
else
|
||||
all = http.pipeline_add("/~" .. usernames[i], nil, 'GET')
|
||||
all = http.pipeline_add("/~" .. usernames[i], nil, all, 'GET')
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user