# POP3 - 110

## **1. Infos :**

\
Le Post Office Protocol (POP) extrait et récupère les mails d'un serveur de courrier distant pour que la machine hôte puisse y accéder.\
Les clients POP se connectent généralement, récupèrent tous les messages, les stockent sur le système client et les suppriment du serveur. Il existe 3 versions de POP, mais POP3 est la plus utilisée.

\
**Ports par défaut** : 110, 995(ssl)

```
PORT    STATE SERVICE
110/tcp open  pop3
```

\
**2. Enumeration**
------------------

### &#x20;**2.1 Récupération de la bannière**

```
nc -nv 110
openssl s_client -connect :995 -crlf -quiet
```

### &#x20;**2.2 Automatisation**

```
nmap --scripts "pop3-capabilities ou pop3-ntlm-info" -sV -port 
```

\
Le script NSE `<pop3-ntlm-info>` pourra retourner certaines données "sensibles" .


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://blog.hacktive.bebzounette.com/services/pop3-110.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
