From cedcc2a796310fdfe9b4340fb5e17801050a28cf Mon Sep 17 00:00:00 2001 From: david Date: Mon, 3 Oct 2011 22:17:58 +0000 Subject: [PATCH] Remove " found" from tftp-enum output lines. --- scripts/tftp-enum.nse | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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