110, 995 - POP

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
Parameters
  • s_client: SSL/TLS client program.

  • -crlf: translate a line feed from the terminal into CR+LF.

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

Note: Server responses will start either with a successful (+OK) or failed status -ERR.

Last updated

Was this helpful?