From 3f5a1bd4c10e0832535aec8749fafd9658350a13 Mon Sep 17 00:00:00 2001 From: dmiller Date: Thu, 30 Apr 2026 22:02:01 +0000 Subject: [PATCH] Remove single-thread restriction from http-form-brute. Closes #264 --- scripts/http-form-brute.nse | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/http-form-brute.nse b/scripts/http-form-brute.nse index 96822814d..ce3a4b0db 100644 --- a/scripts/http-form-brute.nse +++ b/scripts/http-form-brute.nse @@ -580,10 +580,6 @@ action = function (host, port) end local engine = brute.Engine:new(Driver, host, port, options) - -- there's a bug in http.lua that does not allow it to be called by - -- multiple threads - -- TODO: is this even true any more? We should fix it if not. - engine:setMaxThreads(1) engine.options.script_name = SCRIPT_NAME engine.options:setOption("passonly", not uservar)