From ed4881866623ad3e6c6fcf34e5f9ddb83925e5f0 Mon Sep 17 00:00:00 2001 From: david Date: Thu, 23 Sep 2010 16:33:02 +0000 Subject: [PATCH] Remove the restriction to one thread in http-brute.lua, as the worker thread bug that required it has been fixed. --- scripts/http-brute.nse | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/http-brute.nse b/scripts/http-brute.nse index f1aae2c5b..142c6ad8e 100644 --- a/scripts/http-brute.nse +++ b/scripts/http-brute.nse @@ -116,10 +116,7 @@ action = function( host, port ) end - -- there's a bug in http.lua that does not allow it to be called by - -- multiple threads - engine:setMaxThreads(1) status, result = engine:start() return result -end \ No newline at end of file +end