diff --git a/scripts/tftp-enum.nse b/scripts/tftp-enum.nse index 79892a466..929bbb0f3 100644 --- a/scripts/tftp-enum.nse +++ b/scripts/tftp-enum.nse @@ -193,9 +193,9 @@ action = function(host, port) for i, filename in ipairs(filenames) do local request_status = check_file_present(host, port, filename) if (request_status == FILE_FOUND) then - table.insert(results, filename .. " found") + table.insert(results, filename) end end return stdnse.format_output(true, results) -end \ No newline at end of file +end