IMAP/POP3

IMAP on ports: TCP/143 or TCP/993 | POP3 on ports: TCP/110 and TCP/995

IMAP Commands

1 FETCH 1:* full to get most information

1 FETCH 1:* BODY[TEXT] to get the text in the body

POP3 Commands

Dangerous Configuration settings

Tools

nmap with default scripts

curl curl -k 'imaps://<IP>' --user user:p4ssw0rd

OpenSSL for encrypted interactions:

  • openssl s_client -connect 10.129.14.128:pop3s

  • openssl s_client -connect 10.129.14.128:imaps

Last updated