> For the complete documentation index, see [llms.txt](https://jotter.gitbook.io/red-team/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jotter.gitbook.io/red-team/network/common-protocols/imap-pop3.md).

# IMAP/POP3

## IMAP/POP3

IMAP and POP3 handle receiving and storing email. You use these protocols to download and interact with your mailing inbox. They're obviously extremely valuable if you have valid credentials. I recommend just using a GUI mail client like `Evolution` to view or search inboxes.

**IMAP/POP3 over SSL**

```
openssl s_client -connect [IP]:pop3s
openssl s_client -connect [IP]:imaps
```

**cURL Alternative**

```
curl -k imaps://10.129.14.128 --user user:p4ssw0rd
```
