mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
Fixed a bug in http-userdir-enum (was missing an argument to http.pipeline_add())
This commit is contained in:
parent
78877af7e8
commit
f4769f75e9
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue