1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-02 04:49:02 +00:00

Change the message in ftp-anon from "FTP: Anonymous login allowed" to

"Anonymous FTP login allowed".
This commit is contained in:
david
2008-11-06 05:03:21 +00:00
parent a44a66c68a
commit c1cc2c3dcd

View File

@@ -4,7 +4,7 @@ Checks if an FTP server allows anonymous logins.
---
-- @output
-- |_ ftp-anon: Anonymous login allowed
-- |_ ftp-anon: Anonymous FTP login allowed
author = "Eddie Bell <ejlbell@gmail.com>"
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
@@ -43,6 +43,6 @@ action = function(host, port)
socket:close()
if(isAnon) then
return "FTP: Anonymous login allowed"
return "Anonymous FTP login allowed"
end
end