Usage Tips:
- Click on a keyword to enable inline editing.
- Click inside a code block to copy (excludes comments).
- Use the button to view examples.
- Click outside to collapse all examples.
General
# Connect to POP3 mail server
telnet <TARGET> 110
Sample Output:
TO-DO# Connect with SSL
openssl s_client -connect <TARGET>:995 -crlf -quiet
Sample Output:
TO-DO# Send cmd after +OK
USER <USER>
Sample Output:
TO-DOPASS <PASSWORD>
Sample Output:
TO-DO# List all mails
LIST
Sample Output:
TO-DO# Retrieve mail #1
RETR 1
Sample Output:
TO-DO# Exit Ctrl + ], then
quit
Sample Output:
TO-DO