1
0
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:
ron
2010-11-17 20:24:48 +00:00
parent 78877af7e8
commit f4769f75e9

View File

@@ -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