Remove single-thread restriction from http-form-brute. Closes #264

This commit is contained in:
dmiller 2026-04-30 22:02:01 +00:00
parent 91ea799a8b
commit 3f5a1bd4c1

View file

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