1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-10 09:49:05 +00:00

Remove " found" from tftp-enum output lines.

This commit is contained in:
david
2011-10-03 22:17:58 +00:00
parent dd2a2677c5
commit cedcc2a796

View File

@@ -193,7 +193,7 @@ 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