1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 20:51:30 +00:00

Add a little bit about POP3 capabilities to the pop3-capabilities.nse script.

This commit is contained in:
david
2008-11-15 01:43:10 +00:00
parent c3ee93f056
commit 6bd949abb0
2 changed files with 8 additions and 1 deletions

View File

@@ -138,7 +138,9 @@ function login_apop(socket, user, pw, challenge)
end end
--- ---
-- Asks a POP3 server for capabilities -- Asks a POP3 server for capabilities.
--
-- See RFC 2449.
-- @param host Host to be queried. -- @param host Host to be queried.
-- @param port Port to connect to. -- @param port Port to connect to.
-- @return Table containing capabilities. -- @return Table containing capabilities.

View File

@@ -1,5 +1,10 @@
description = [[ description = [[
Retrieves POP3 email server capabilities. Retrieves POP3 email server capabilities.
POP3 capabilities are defined in RFC 2449. The CAPA command allows a client to
ask a server what commands it supports and possibly any site-specific policy.
Besides the list of supported commands, the IMPLEMENTATION string giving the
server version may be available.
]] ]]
--- ---