From f4769f75e9c857e2026fd6a990a35ad943120bfc Mon Sep 17 00:00:00 2001 From: ron Date: Wed, 17 Nov 2010 20:24:48 +0000 Subject: [PATCH] Fixed a bug in http-userdir-enum (was missing an argument to http.pipeline_add()) --- scripts/http-userdir-enum.nse | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/http-userdir-enum.nse b/scripts/http-userdir-enum.nse index b41a6e62d..41a4531fc 100644 --- a/scripts/http-userdir-enum.nse +++ b/scripts/http-userdir-enum.nse @@ -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