diff --git a/http-vuln-exchange.nse b/http-vuln-exchange.nse index 49b4599..113792c 100644 --- a/http-vuln-exchange.nse +++ b/http-vuln-exchange.nse @@ -120,7 +120,7 @@ action = function(host, port) local answer = http.get(host, port, "/owa", options ) if answer.status == 302 then - return "Error 302 " .. answer.location + return "Error 302 " .. table.concat(answer.location," -> ") elseif answer.status ~= 200 then return "Error " .. tostring(answer.status) .. " for /owa" end