IMAP (143-993)
Internet Message Access Protocol.
Port
Interact
telnet <IP> 143
nc <IP> 143openssl s_client -connect <IP>:imaps
openssl s_client -connect <IP>:993 -crlf -quiet 1 LOGIN <USER> <PASS> Login. User access
1 LIST "" * Lists all directories
1 CREATE "INBOX" Creates a mailbox with a specified name
1 DELETE "INBOX" Delete a mailbox
1 RENAME "X" "Y" Rename a mailbox.
1 SEARCH ALL To obtain a list of the message IDs in the folder
1 LSUB "" * Undo any changes
1 SELECT INBOX Select a mailbox so that you can access the messages in it
1 UNSELECT INBOX Exits the selected mailbox
1 FETCH <ID/*> all Retrieves data associated with a message in the mailbox
1 FETCH <ID/*> BODY[] //
1 CLOSE Removes all messages with the Deleted flag set
1 LOGOUT Closes the connection with the IMAP serverLast updated