110, 995 - POP
Banner Grabbing
Telnet
telnet 10.0.0.3 110
Netcat
nc -n 10.0.0.3 110
openssl
openssl s_client -crlf -connect 10.0.0.3:995
pop3-ntlm-info NSE Script
nmap -p 110,995 --script pop3-ntlm-info 10.0.0.3
Capabilities
POP3 capabilities are defined in RFC2449. The CAPA
command allows a client to ask a server what commands it supports and possibly any site-specific policy.
pop3-capabilities NSE Script
nmap -p 110,995 --script pop3-capabilities 10.0.0.3
Commands
USER Username or mailbox.
PASS Server/mailbox-specific password.
STAT Number of messages in the mailbox.
LIST [ message# ] Messages summary.
RETR [ message# ] Retrieve selected message.
DELE [ message# ] Delete selected message.
RSET Reset the session. Undelete deleted messages.
NOOP No-op. Keeps connection open.
QUIT End session.
Last updated
Was this helpful?